hello python

def main():
    str = "hello python~"
    print(str)

if __name__ == '__main__':
    # Run the program only when this file is executed directly,
    # not when it is imported by another Python file.
    main()

python filename.py


Comments