-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLect_001.py
More file actions
28 lines (21 loc) · 707 Bytes
/
Lect_001.py
File metadata and controls
28 lines (21 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# First tutorial
# Comments, Escape Sequence and Print Statements.
# This is first comment example.
print("Hello World !!!!")
'''
Multi line comment example.
With triple qoute we can comment multiple lines.
'''
# end is merging last print line.
print("This is first print.", end="")
print("This is second print.")
# end with space.
print("This is first print.", end=" ")
print("This is second print.")
#end with comma
print("This is first print", end=",")
print("This is second print.")
# agar end=" " istemaal kiye to use line me likha jaega
# Now Singhal ab new line me print hoga.
print("hello i will write my name in the next sequance \nSinghalpuri07")
print("hii")