diff options
Diffstat (limited to 'languages/python/app_templates/pythonhello/app.py')
-rw-r--r-- | languages/python/app_templates/pythonhello/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages/python/app_templates/pythonhello/app.py b/languages/python/app_templates/pythonhello/app.py index 3257ce62..33b8be2c 100644 --- a/languages/python/app_templates/pythonhello/app.py +++ b/languages/python/app_templates/pythonhello/app.py @@ -1,7 +1,7 @@ #!/usr/bin/env python def main(): - print 'Hello world!' + print('Hello world!') main() |