Cisco NetAcad Intro to Python Course - Supplement Lab Tutorial & Solution Set: Lab 4.1.6.13 Part IV

preview_player
Показать описание
*This video will show you "one" way to solve the victoryFor function and how you can integrate it into your program and then test to make sure it works!*

This is probably the lab you have all been waiting for: Tic-Tac-Toe! This will be Part I of a five (5) part series on this project! In this series of Python tutorials we will be covering all of the labs from the Cisco Networking Academy 'Introduction to Python Course'! I am currently teaching this course to a group of NetAcad instructors and wanted to add some value to their studies as well as yours! Hope you enjoy these lab tutorials and here is the link I references in the video for the tutorial I posted on how to sign up for this exact same course FOR FREE at the Python Institute! Here is the link:

Enjoy!
Рекомендации по теме
Комментарии
Автор

looking for part 5 but cannot find it apparently...need a link...thank you so much..great great tutorials

insafalwohaibi
Автор

One Doubt .
def makeListofFreeFields(board):
free_Squares=[]
for row in range(0, 3):
for column in range(0, 3):
if board[row][column]=='X' or board[row][column]=='O':
# in place of pass can we use continue here
#rest of the code

akshaydwivedi