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") + +