diff options
Diffstat (limited to 'ExampleSubmission/example.py')
-rw-r--r-- | ExampleSubmission/example.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ExampleSubmission/example.py b/ExampleSubmission/example.py index 9b5f0e8..0cf7cd7 100644 --- a/ExampleSubmission/example.py +++ b/ExampleSubmission/example.py @@ -70,5 +70,9 @@ def greet(*names, greeting="Hello"): for name in names:
print(greeting, name)
+def make_multilines():
+ print("True\n\nFalse")
+
if __name__ == "__main__":
- print(hello_world(int(sys.argv[1])) + "\n\nowo" )
\ No newline at end of file + print(hello_world(int(sys.argv[1])) + "\n\nowo" )
+ make_multilines()
\ No newline at end of file |