Create a program that asks the user to enter their name and their age. Print out a message addressed to them that tells them the year that they will turn 100 years old. Note: for this exercise, the expectation is that you explicitly write out the year (and therefore be out of date the next year). If you want to do this in a generic way, see exercise 39.
Extras:
"\n
is the same as pressing the ENTER button)Concepts for this week:
To get user input in Python (3), the command you use is input()
. Store the result in a variable, and use it to your heart’s content. Remember that the result you get from the user will be a string, even if they enter a number.
For example,
What this will print in the terminal (or the shell, whatever you are running Python in) will be:
What happens at the end of input()
is that it waits for the user to type something and press ENTER. Only after the user presses ENTER does the program continue.
What you get from the input()
function is a string. What can you do with it?
First: Make the string into a number. Let’s say you are 100% positive that the user entered a number. You can turn the string into an integer with the function int()
. (In a later exercise or two or three there will be questions about what to do when the user does NOT enter a number and you try to do this; for now don’t worry about that problem). Here is what this looks like:
(or, if you want to be more compact with your code)
In both cases, age
will hold a variable that is an integer, and now you can do math with it.
(Note, you can also turn integers into strings exactly in the opposite way,
using the str()
function)
Second: Do math with strings. What do I mean by that? I mean, if I want to combine (concatenate is the computer science word for this) strings, all I need to do is add them:
The same works for multiplication:
but division and subtraction do not work like this. In terms of multiplication, the idea of multiplyling two strings together is not well-defined. What does it mean to multiply two strings in the first place? However, it makes sense in a way to specify multiplying a string by a number - just repeat that string that number of times. Try this in your own program with all the arithmetic operations with numbers and strings - the best way to get a feel for what works and what doesn’t is to try it!