Hello World! - in python print()
statement
Traditionally we notice that, when someone learn a new language in computer science commonly used code to write "Hello World!".
Python has very simple code to write
print("Hello World!")
To write and run python code Click the Microsoft Azure Jupiter Notebook link :
And select your desire topic from the list.
You can practice from the above link or create your own library.
Now try showing :
"Hello programmer!"
I tried print("Hello programmer!")
And it's reply me with new line : Hello programmer!
That's it, I have done! This is how I start learning Python!
In Python programming every comments line start with # symbol.
Task-1
#Program : "Hello World!" with comments
#Add a comment describing the code details
Task - Results :
Program:
Task - Results :
Program:
#This is a comments and comments start with # symbol
print("Hello, World!")
print("Hello, World!")
Comments
Post a Comment