forked from programmingwithmohammed/pythonbasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontinue_examples.py
More file actions
37 lines (26 loc) · 773 Bytes
/
continue_examples.py
File metadata and controls
37 lines (26 loc) · 773 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
# -*- coding: utf-8 -*-
"""
Created on Sat Jul 31 20:31:51 2021
@author: mjach
"""
'''Continue examples'''
fruit_list = ['apple', 'banana', 'orange', 'watermelon']
# for fruit in fruit_list:
# if fruit == 'orange':
# continue
# print(f'The fruit name is :{fruit}')
'''continue and break togather examples'''
# for fruit in fruit_list:
# if len(fruit) !=6:
# continue
# print(f'The fruit name is : {fruit}')
# # if fruit == 'orange':
# # break
'''How to use return statement inside the loop'''
def find_fruit(fruit_name):
for fruit in fruit_list:
print(fruit)
if fruit == 'orange':
return f'we found out the fruit :{fruit}'
#calling the function
print(find_fruit(fruit_list))