Skip to content

Instantly share code, notes, and snippets.

@jeremy886
Last active August 22, 2016 04:07
Show Gist options
  • Save jeremy886/bc42e7758ba3e62eeda08d86299fed1c to your computer and use it in GitHub Desktop.
Save jeremy886/bc42e7758ba3e62eeda08d86299fed1c to your computer and use it in GitHub Desktop.
# You don't need to use "import" for built-in fuctions when using them.
# We will see a few examples of frequently used built-in functions.
# You can see more here: https://docs.python.org/3/library/functions.html
# Built-in fuctions we have used so far.
# input()
name = input('Please type in your name: ')
# print()
print('Hello', name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment