Advertisement
jabela

Basic Variables

Feb 10th, 2016
1,216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. ComputerAge=3.45
  2. ComputerName='Skynet'
  3. MyAge = int(input('What is your age?'))
  4. print('I am younger than %d, because I am %.2f My name is %s.' % (MyAge,ComputerAge,ComputerName))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement