Answer:
Tritium BF
Explanation:
A I think I might be wrong
why
nums = []
while True:
num = float(input("Enter a number: "))
if num <= 0:
break
nums.append(num)
print("The largest number entered was",max(nums))
I wrote my code in python 3.8. I hope this helps.
the answer is B
Just took the test