Get expert advice and community support on IDNLearn.com. Join our Q&A platform to access reliable and detailed answers from experts in various fields.
This is for Python
def biggestNum():
array = []
for i in range(8):
number = int(input('Enter number: '))
array.append(number)
return max(array)
print(biggestNum())