Write a few lines of Python that will do the following:
Code:
test=[]
for i in range(10):
a=int(input("Enter a number:"))
test.append(a)
print("The biggest number in list is",max(test))
Code Snippet:

Output:

Write a few lines of Python that will do the following: Create an empty list called...