Showing posts with label Python. Show all posts
Showing posts with label Python. Show all posts

Friday, January 12, 2018

Starting with PYTHON!


Let's become a programmer with Python!
 

At the very first, we are going to print ' Hello World ' which is the first code of every programmer.

Now, Open your Python Interpreter on your computer.

Here is a sample line of code that can be executed in Python:

print ("Hello, World!")


You can just as easily store a string as a variable and then print it to stdout:
my_string = "Hello, World!"
print(my_string)
#Happy_Coding :)