Created
April 23, 2018 05:06
-
-
Save dongweiming/5222db57bf0d08e222a1c3e8d3419531 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import antigravity | |
if sys.version_info < (3, 6): | |
print('Python 3.6+ is the future!') | |
exit() | |
def say(name: str) -> None: | |
print(f'Life is short, you need {name}!') | |
if __name__ == '__main__': | |
say('Python') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment