FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-Learning-code/python/codechef/01_practice.py at main · ronitraj74/python-Learning-code · GitHub
ronitraj74
/
python-Learning-code
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
1
Code
Issues
0
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-Learning-code
/
python
/
codechef
/
01_practice.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (32 loc) · 667 Bytes
Breadcrumbs
python-Learning-code
/
python
/
codechef
/
01_practice.py
Copy path
File metadata and controls
32 lines (32 loc) · 667 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# cook your dish here
# n = 5
# for i in range(1,n+1):
# for j in range(1,i+1):
# print("*",end="")
# print()
# print("code","chef")
# print(5 5)
# print(8)
# print(5,end="")
# print(7)
# print("Hello","world",5,"endl",2)
# print("Hello")
# print(" World")
# print(1,2,3,4,5)
# print("1 2 3 4 5")
# n = 5
# for i in range(1,n+1):
# print(f"{i} - {i*i}")
# cook your dish here
# n = 5
# for i in range(1,n+1):
# print(f"{i}" - "{i*i}")
# n = 5
# for i in range(n):
# for j in range(i):
# print("*",end="")
# print()
for
i
in
range
(
4
):
for
j
in
range
(
5
):
print
(
"*"
,
end
=
""
)
print
()
Back
|
FazBrowse Home
|
New Git URL