below is my codes. i would like to print the inputs but i want the codes to be shorter and not tedious. how do i print the 10 inputs i have typed in without repeating the word 'print' 10 times?
Q1, Q2, Q3, Q4, Q5, Q6, Q7, Q8, Q9, Q10= str(input("Enter answers separating by space: ")).split()
print("Q1", Q1)
print("Q2", Q2)
print("Q3", Q3)
print("Q4", Q4)
print("Q5", Q5)
print("Q6", Q6)
print("Q7", Q7)
print("Q8", Q8)
print("Q9", Q9)
print("Q10", Q10)