-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistloop.py
46 lines (45 loc) · 1.15 KB
/
listloop.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
#showing lists
#adding list
numbers=[2,3,4,5,6,7,8,9]
total=0
for number in numbers:
total+=number
print(numbers)
print(total)
#sorting and filtering
words=['asd','yesd','oka','asdkdj','dksjhdasj']
shortwords=""
longwords=""
for word in words:
if(len(word)<5):
shortwords+=word+"\n"
else:
longwords+=word+"\n"
print("Short Words\n",shortwords)
print("Long words\n",longwords)
#counting and searching
search_word="a"
total=0
for word in words:
total+=word.lower().count(search_word)
print("Finding in each word",total)
print(total)
cities = ["New York", "Shanghai", "Munich", "Tokyo", "Dubai", "Mexico City", "São Paulo", "Hyderabad"]
for city in cities:
if city.startswith("P"):
print(city)
elif city.startswith("D"):
print(city)
#range()
for i in range(20):
print(i)
cities = ["New York", "Shanghai", "Munich", "Tokyo", "Dubai", "Mexico City", "São Paulo", "Hyderabad"]
half=int(len(cities)/2)
for word in range(half):
print(cities[word])
#range(start,stop)
for i in range(11,20):
print(i)
#range(start,stop,step)
for i in range(11,40,5):
print(i)