FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
PythonTutorial/loop_While.py at master · xhackff/PythonTutorial · GitHub
xhackff
/
PythonTutorial
Public
forked from
hussien89aa/PythonTutorial
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
PythonTutorial
/
loop_While.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (9 loc) · 205 Bytes
Breadcrumbs
PythonTutorial
/
loop_While.py
Copy path
File metadata and controls
17 lines (9 loc) · 205 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
def
main
():
print
(
"program start"
)
i
=
1
while
(
i
<
100
):
if
(
i
%
4
==
0
):
print
(
"Count {}"
.
format
(
i
))
i
+=
1
print
(
"progarm end"
)
if
__name__
==
'__main__'
:
main
()
Back
|
FazBrowse Home
|
New Git URL