Input From the User
This lesson will focus on Python's built-in input function.
We'll cover the following...
Introduction to input
Python has a wide array of excellent built-in functions, such as the len(my_list)
command, which returns the length of a list.
Similarly, to ask the user for input, you can use the built-in function input(_prompt_)
.
Note: If you ...