04 1021 Beginning To Program Python s2019
04 1021 Beginning To Program Python s2019
Beginning to
Program Python
David Rossiter
Outcomes
• After completing this presentation, you are
expected to be able to:
1. Use Python code to do simple text input and
output
2. Use variables to store things, such as text and
numbers
3. Demonstrate running Python code as a
program
or this:
What About Entering Numbers?
• If we want to get a number from the user,
we can use the same input function input()
• However, input() always produces text
• You will encounter a problem if you try to treat
the variable as if it has a number, like this:
Converting Text into a Number
• What we can do is to take the input from the user, and
then convert it to a number using int()
• int() means ‘convert this into an integer’
• After it has been converted, you can add, subtract,
multiply, etc, the number stored in the variable