FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonbasic/break_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
/
break_examples.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (24 loc) · 639 Bytes
Breadcrumbs
pythonbasic
/
break_examples.py
Copy path
File metadata and controls
30 lines (24 loc) · 639 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
# -*- coding: utf-8 -*-
"""
Created on Sat Jul 31 20:19:51 2021
@author: mjach
"""
'''how to use break examples'''
fruit_list
=
[
'apple'
,
'banana'
,
'orange'
,
'watermelon'
]
# for fruit in fruit_list:
# print(f'The fruit name is :{fruit}')
# if fruit == 'orange':
# break
'''How to do break in while loop'''
# fruit = 'orange'
# while True:
# if fruit in fruit_list:
# print(f'The fruit is found: {fruit}')
# break
'''How to do break in while loop'''
counter
=
0
while
True
:
counter
=
counter
+
1
if
counter
==
20
:
print
(
f'Count has been done to :
{
counter
}
'
)
break
Back
|
FazBrowse Home
|
New Git URL