languages

A collection of programs made with different programming languages.
git clone git://evanalba.com/languages
Log | Files | Refs

first.py (359B)


      1 # This program says hello and asks for my name.
      2 
      3 print('Hello world!')
      4 print('What is your name?') # ask for their name
      5 myName = input()
      6 print('It is good to meet you, ' + myName)
      7 print('The length of your name is:')
      8 print(len(myName))
      9 print('What is your age?') # ask for their age
     10 myAge = input()
     11 print('You will be ' + str(int(myAge) + 1) + ' in a year.')