File tree 1 file changed +14
-14
lines changed
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change 1
- '''
1
+
2
2
for r in range (5 ):
3
3
for c in range (r ):
4
- print("#",end=" ") #end =" " is used such that the control wont go to the next line
5
- print() #used for getting into new line // print("\n ") can also be used
6
- '''
7
- '''
4
+ print ("#" ,end = " " ) #end =" " is used such that the control wont go to the next line
5
+ print () #used for getting into new line // print("\n") can also be used
6
+
7
+
8
8
for r in range (4 ):
9
9
for c in range (r + 1 ):
10
- print("#",end=" ") #end =" " is used such that the control wont go to the next line
11
- print() #used for getting into new line // print(" \n ") can also be used
12
- '''
13
- '''
14
- for r in range(4,0,-1): #range(4)
15
- for c in range(r): # range(4-r)s
16
- print("#",end=" ") #end =" " is used such that the control wont go to the next line
17
- print() #used for getting into new line // print(" \n ") can also be used
10
+ print ("#" ,end = " " )
11
+ print ()
12
+
13
+
14
+ for r in range (4 ,0 ,- 1 ):
15
+ for c in range (r ):
16
+ print ("#" ,end = " " )
17
+ print ()
18
18
19
- '''
19
+ #Code by Steavo Babu
You can’t perform that action at this time.
0 commit comments