-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.py
62 lines (33 loc) · 1.03 KB
/
print.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
################################
# #
# #
# PRINT FUNCTION #
# #
# #
################################
# using single quotation printing ...
print('hello world')
# using double quotation printing ...
print("hello boy!!...")
# print by f {} string
a = 5
b = "Richie"
c = 2.5
print(f'{b} have {a} crores and {c} acres land...')
# empty space printing
print('')
# \n for next line print
print("hello man \n some thing new ...")
# \t for tab spacing ...
print('hello man i think we need some space \t as big as big ....')
# print using triple quotation , we can print multiple lines ...
print("""
hello man
how are you
what's up
then we will meet one day
bye man
""")
# print using when a apstrophe sentence ..[ use this \ when putting ' ]
print ("hello boomer richie\'s house was demolished by ABC\'s constuctions")
print("Git Log on my discord checkin...")