Lab 2.06 - Tic-Tac-Toe
1) For each example below, predict what will be printed. Then run the program and confirm.
a = ['a', 'b', 'c', 'd', 'e']
print(a[0:3])
print(a[1:4])
a = ['a', 'b', 'c', 'd', 'e']
print(a[1:len(a) - 3])
a = ['a', 'b', 'c', 'd', 'e']
b = a.remove('b')
print(a)
print(b)
a = ['a', 'b', 'c', 'd', 'e']
a[0] = 'haha'
b = a.pop()
print(a)
print(b)
a = ['a', 'b', 'c', 'd', 'e']
b = a + ['abc']
print(a)
print(b)
a = ['a', 'b', 'c', 'd', 'e']
b = a.append('f')
print(a)
print(b)
2) Remember the tic-tac-toe board we created in class? We are going to start implementing Tic-Tac-Toe using a single list.
- The user picks a location on the board according to the number:
- Depending on the position that the user inputs, update the position of the board to an "X" to reflect that.
- Print the updated board out, but don't wory about making it look pretty.
- Only need to implement one turn of the game