-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice10.py
More file actions
39 lines (31 loc) · 1.22 KB
/
practice10.py
File metadata and controls
39 lines (31 loc) · 1.22 KB
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
"""
5-2. More Conditional Tests: You don’t have to limit the number of tests you
create to 10. If you want to try more comparisons, write more tests and add
them to conditional_tests.py. Have at least one True and one False result for
each of the following:
Test whether an item is in a list
Test whether an item is not in a list
Tests using the and keyword and the or keyword
Tests using the lower() function
"""
heroes_list = ['Spiderman','Batman','Flash','Superman','Captain America','Professor X','Falcon']
#Test whether an item is in a list
'''item in list.'''
if("Spiderman" in heroes_list):
print("Spidy greetings : Hi everyone!!")
#Test whether an item is not in a list
'''item not in list.'''
if("Wonder woman" not in heroes_list):
print("The warriors never die !!")
#Tests using the and keyword and the or keyword
'''testing keywords'''
if("wonder woman" not in heroes_list and "batman".capitalize() in heroes_list):
print("We are justice!!")
if("Batman" not in heroes_list or "Flash" in heroes_list):
print("The faster man alive...")
#Tests using the lower() function
if(heroes_list[0] == "Spiderman"):
print()
print("heroes in lowercase : ")
for heroe in heroes_list:
print(heroe.lower())