Skip to content

Instantly share code, notes, and snippets.

@gotnix
Created June 13, 2012 04:27
Show Gist options
  • Select an option

  • Save gotnix/2921871 to your computer and use it in GitHub Desktop.

Select an option

Save gotnix/2921871 to your computer and use it in GitHub Desktop.
有交互的Python Hello World
#!/usr/bin/python
# coding=utf-8
def main():
name = raw_input("What's your name?\n\t")
print("\n\tHello " + name + ", Welcome to Python World!")
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment