FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonbasic/while_loop_examples.py at main · programmingwithmohammed/pythonbasic · GitHub
programmingwithmohammed
/
pythonbasic
Public
Notifications
You must be signed in to change notification settings
Fork
4
Star
3
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonbasic
/
while_loop_examples.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (13 loc) · 309 Bytes
Breadcrumbs
pythonbasic
/
while_loop_examples.py
Copy path
File metadata and controls
18 lines (13 loc) · 309 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
# -*- coding: utf-8 -*-
"""
Created on Sat Jul 31 20:08:55 2021
@author: mjach
"""
'''while loop examples'''
number
=
0
max_number
=
5
while
number
<=
max_number
:
print
(
f'the number is
{
number
}
'
)
# if you do not update the number then it will run forever.
number
+=
1
#number = number + 1
Back
|
FazBrowse Home
|
New Git URL