Course Python For Life 3 – Input Command


As was promised in the previous lesson, now we’ll see the input command in python language, it’s a smaller lesson, next lesson, we’ll see variable’s concepts in Python that’s different of others languages.

First step:

- I recommend that you use the output command.

In python, input command requires a variable. There’s two ways to use this command, they’re:

- with print.
- without print.

Note: In python, you don’t need to use ‘;’ in the end of a line, it works, but it isn’t required.

With print:

print(‘type any key...’)
a = input()

Test it yourself!

See it in the editor:

Run and see what happen. It required that the use type any thing by the keyboard. Below, see it being ran.


But there’s other way to do this code, see below:

a = input(‘Press any key...’)

Test it yourself! Think about it, that’s the way to learn!
The appearance is:

 

Please learn it because that’s required for the course sequence. That’s finished! In the next lesson, we’ll see variables in python. Share with your friends and let’s go!

Well, that’s all folks!
See you later!

Comentários

More Famous Posts

Course C Initial 7th – Training with Math

Course C Initial – 3rd Variables Part. 1