-
Notifications
You must be signed in to change notification settings - Fork 4
/
for_loop_examples.py
57 lines (41 loc) · 1.45 KB
/
for_loop_examples.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
"""
Created on Fri Jul 30 01:40:11 2021
@author: mjach
"""
'''For look examples'''
my_fruits_list = ['apple', 'orange', 'banana', 'watermelon']
#checking is the fruit in my list
print('Is this fruit in my list?:', 'apple' in my_fruits_list)
'''for loop example'''
# for fruit in my_fruits_list:
# print(f'Fruit name is :{fruit}')
'''how to use range() function in for loop -
here range 0 is inclusive I mean 0 will print it will start from 0
and 4 is exclusive I mean 4 will not print, it will stop to number 3
'''
# for number in range(11):
# print(f'Number is : {number}')
'''How to print specific number within range
we can specify start and end.
here number 1 is inclusiveand
number 10 is exclusive
'''
# for number in range(1, 10):
# print(f'Here number will print from 1 to 9: {number}')
'''range() function another use
specify start, end, increment
'''
# for number in range(2, 20, 2):
# print(f'Number is :{number}')
'''How to print out the index of the items
we can use buit in function enumerate
'''
# for index, fruit in enumerate(my_fruits_list):
# print(f'Fruit :{fruit} is at index no : {index}')
'''how to use for loop in dictionary'''
my_fruit_dict= {1:'apple', 2:'orange', 3:'banana', 4:'watermelon'}
# for fruit in my_fruit_dict:
# print(f'That will return only keys of the dict.: {fruit}')
for keys, values in my_fruit_dict.items():
print(f'Fruit :{values} is at {keys} ')