In this tutorial we focus on to write our first python program.At first open the IDLE or python interpreter then simple write the below code
and see the magic …
print("Hello, World !")
Output :
Hello, World !
Find some motivation. Hope so !! There will be more magicial things out there.
Before ending this tutorial try to understand the code. So, here print( )
is nothing but a function that we pass an argument and got the output shown above .
See more example below
print("I love programming !")
Output :
I love programming !
Like the above Example try your own .