Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion absolute-beginners/001-tut.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# First tutorial
# Date: 05-December-2018
# Comments, Escape Sequence and Print Statements.
# let's start learning Python and i know i will be the best coder ...
# A big thanks to harry bhai.

# This is first comment example.
print("Hello World !!!!")
Expand All @@ -11,7 +13,7 @@
'''

# end is merging last print line.
print("This is first print.", end="")
print("This is first print.", end="") #by using end="it will print horrizontally"
print("This is second print.")

# end with space.
Expand Down