Introduction Variables Data Types Numbers Casting Strings Boolean Operators Lists Tuples Dictionaries If-Else While Loops For Loops Functions Arrays Scope Modules User Input File Handling Python Maths

Welcome to the lesson on Python User Input

User Input

Python allows for user input.

That means we are able to ask the user for input.

Python 3.6 uses the input() method.

Examples: asks for the username, and when you entered the username, it gets printed on the screen:

user-input
Try it out yourself

Python stops executing when it comes to the input() function, and continues when the user has given some input.

We have learned Python User Input in simple terms. Let's proceed to the next lesson

Next
Back To Top