top of page

User Input in Python

Updated: Apr 19, 2023

The user input can be captured using the input() method.


question = input("Enter...")
print(question)

The link to the Github repository is here .

bottom of page