From 3992304fb42c13d5c8f04e082bc03f4f0754659e Mon Sep 17 00:00:00 2001 From: dany pm Date: Sat, 19 Feb 2022 11:29:14 +0330 Subject: [PATCH] more example add 3 example --- ch03-first-python-program/2-screw-things-up.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ch03-first-python-program/2-screw-things-up.py b/ch03-first-python-program/2-screw-things-up.py index ba0b1c8..680f6bd 100755 --- a/ch03-first-python-program/2-screw-things-up.py +++ b/ch03-first-python-program/2-screw-things-up.py @@ -24,3 +24,14 @@ # # my_string = "hello" # print(my_string) + +# other print style +# +# multi text print +print("hello","world") +print("hello"+"world") + +#\n for print in next line +print("hello \nworld") + +