Skip to content

Commit cf53bc5

Browse files
MOdule 10 lists
1 parent 8a99ceb commit cf53bc5

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed
+32-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-
print('Hello World')
1+
guests = ['Susan','Christopher','Bill','Satya','Sonal']
2+
3+
#option two for looping through a list
4+
for currentGuest in guests :
5+
print(currentGuest)
6+
7+
##option one for looping through a list
8+
#nbrValueInList = len(guests)
9+
10+
#for steps in range(nbrValueInList) :
11+
# print(guests[steps])
12+
13+
14+
#remove a value from the list
15+
#guests.remove('Satya')
16+
#del guests[0]
17+
#print (guests[0])
18+
#print (guests[-1])
19+
20+
21+
##add a value
22+
#guests.append('Colin')
23+
#print (guests[-1])
24+
25+
##update a value
26+
#guests[3] = 'Sonal'
27+
#print (guests[3])
28+
29+
30+
31+
32+

0 commit comments

Comments
 (0)