Toggle Menu
def hello(you): print('Hello ' + you + '!') print(__name__) if __name__ == '__main__': hello('world') hello('Jane') hello('Michael')
Resource created 10 years ago, last modified 10 years ago.
file: greet.py
Back to top