Answer:
numbers = []
for i in range(4):
z = int(input("enter a number: "))
numbers.append(z)
print("First is {} and last is {}".format(numbers[0], numbers[-1]))
Step-by-step explanation:
Now I understand your other question as well! ;-)
1.6m questions
2.0m answers