py-repo

a python playground
Index Commits Files Refs README
functions.py (244B)
   1 
   2 def myFuntion():
   3     #    Statements
   4     return
   5 
   6 def sayHi(name):
   7     print("Hello " + name + "!")
   8 
   9 def echoAge(age):
  10     print("You're " + age + " years old.")
  11 
  12 name = input("What's your name?: ")
  13 age = input("How old are you?: ")
  14 
  15 sayHi(name)
  16 echoAge(age)