The big little idea
input() asks for information and gives it back as a string. Your program can use that answer to do something personal or surprising.
color = input()
print(f"One {color} spaceship, coming up!")In this playground, type answers into the Program input box before running. Each call to input() takes the next line. Even an answer like 12 arrives as text; int() changes a whole-number string into a number.