-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1_number_patterns
More file actions
85 lines (46 loc) · 713 Bytes
/
Copy path1_number_patterns
File metadata and controls
85 lines (46 loc) · 713 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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""
1
2 3
4 5 6
7 8 9 10
n=int(input("enter no. of rows"))
num=1
for row in range(1,n+1):
for col in range(1,row+1):
print(num,end=" ")
num+=1
print("\n")
p
py
pyt
pyth
pytho
python
n=input("enter the string: ")
word=n[0]
for row in range(len(n)):
for col in range(row+1):
print(n[col],end="")
print("\n")
12345
1234
123
12
1
n=int(input("no. of rows"))
for row in range(n+1,0,-1):
for col in range(1,row):
print(col,end="")
col=col-1
print("\n")
55555
4444
333
22
1
n=int(input("no. of rows"))
for row in range(n,0,-1):
for col in range(1,row+1):
print(row,end="")
print("\n")
"""