-
Notifications
You must be signed in to change notification settings - Fork 0
/
Python_practice.py
171 lines (111 loc) · 4.34 KB
/
Python_practice.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# counties = ["Arapahoe", "Denver", "Jefferson"]
# if "El Paso" in counties:
# print("El Paso is in the list of counties.")
# else:
# print("El Paso is not in the list of counties.")
# counties = ["Arapahoe", "Denver", "Jefferson"]
# if "Arapahoe" in counties:
# print("True")
# else:
# print("False")
# counties = ["Arapahoe", "Denver", "Jefferson"]
# if "El Paso" not in counties:
# print("True")
# else:
# print("False")
# x = 5
# y = 5
# if x == 5 and y == 5:
# print("True")
# else:
# print("False")
# x = 5
# y = 5
# if x ==3 or y == 5:
# print("True")
# else:
# print("False")
# x = 5
# y = 5
# if not(x > y):
# print("True")
# else:
# print("False")
# if "Arapahoe" in counties and "El Paso" in counties:
# print("Arapahoe and El Paso are in the list of counties.")
# else:
# print("Arapahoe or El Paso is not in the list of counties.")
# if "Arapahoe" in counties or "El Paso" in counties:
# print("Arapahoe or El Paso is in the list of counties.")
# else:
# print("Arapahoe and El Paso are not in the list of counties.")
# if "Arapahoe" in counties and "El Paso" not in counties:
# print("Only Arapahoe is in the list of counties.")
# else:
# print("Arapahoe is in the list of counties and El Paso is not in the list of counties.")
# for county in counties:
# print(county)
# numbers = [0, 1, 2, 3, 4]
# for num in numbers:
# print(num)
# for num in range(5):
# print(num)
# counties_tuple = ("Arapahoe", "Denver", "Jefferson")
# for i in range(len(counties_tuple)):
# print(counties_tuple[i])
# counties_dict = {"Arapahoe": 422829, "Denver": 463353, "Jefferson": 432438}
# for county in counties_dict:
# print(county)
# for county in counties_dict.keys():
# print(county)
# for voters in counties_dict.values():
# print(voters)
# for county in counties_dict:
# print(counties_dict[county])
# for county in counties_dict:
# print(counties_dict.get(county))
# for county, voters in counties_dict.items():
# print(county, voters)
# voting_data = [{"county":"Arapahoe", "registered_voters": 422829},
# {"county":"Denver", "registered_voters": 463353},
# {"county":"Jefferson", "registered_voters": 432438}]
# for i in range(len(voting_data)):
# print(voting_data[i])
# for county_dict in voting_data:
# for value in county_dict.values():
# print(value)
# for county_dict in voting_data:
# for key, value in county_dict.items():
# print(value)
# for county_dict in voting_data:
# print(county_dict.values())
# for county_dict in voting_data:
# print(county_dict['registered_voters'])
# for county_dict in voting_data:
# print(county_dict['county'])
# counties_dict = {"Arapahoe": 369237, "Denver": 413229, "Jefferson": 390222}
# for county, voters in counties_dict.items():
# print(county + " county has " + str(voters) + " registered voters.")
# for county, voters in counties_dict.items():
# print(f"{county} county has {voters} registered voters.")
# candidate_votes = int(input("How many votes did the candidate get in the election? "))
# total_votes = int(input("What is the total number of votes in the election?"))
# message_to_candidate = (
# f"You received {candidate_votes:,} number of votes. "
# f"The total number of votes in the election was {total_votes:,}."
# f"You received {candidate_votes / total_votes * 100:.2f}% of the total votes.")
# print(message_to_candidate)
# counties_dict = {"Arapahoe": 422829, "Denver": 463353, "Jefferson": 432438}
# for county, voters in counties_dict.items():
# print(f"{county} county has {voters} registered voters.")
# candidate_votes = int(input("How many votes did the candidate get in the election? "))
# total_votes = int(input("What is the total number of votes in the election? "))
# message_to_candidate = (
# f"You received {candidate_votes} number of votes."
# f"The total number of votes in the election was {total_votes}."
# f"You received {candidate_votes / total_votes * 100}% of the total votes." )
# print(message_to_candidate)
voting_data = [''{"county":"Arapahoe", "registered_voters": 422829},
{"county":"Denver", "registered_voters": 453353}, "county":"Jefferson",
"registered_voters": 432438}]
print(f"{county} county has {voters} registered voters.")