1-My first writing in IDLE.


>>> print ('hello world')

hello world

>>> print ("hi guys")

hi guys

>>> print ('''hello friends''' )

hello friends

>>> print ("'peace be upon you"')

       

SyntaxError: EOL while scanning string literal

>>> print ("""peace""")

peace

>>> 

Comments

Popular posts from this blog

XAMPP, SQL BASIC COMMANDS

The Minion Game Hackerrank Solution

Arrays - DS | HackerRank Solutions