Category: Portable Python

  • 4 x 4 Tic-Tac-Toe Game written in Portable Python 3.2.5.1

    This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters # Portable Python 3.2.5.1 class Board: def __init__(self): """__init_ method""" self.x = "-" self.y = "|"…

  • Python turtle graphics program – Outputs polygons

    This program outputs as set of polygons – written in Portable Python 3.2.5.1. Note: When running the program, you must click anywhere within the “Python Turtle Graphics” window to advance thru the polynomials. This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file…

  • Tic-Tac-Toe written in Portable Python 3.2.5.1

    This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters class Board: def __init__(self): """__init_ method""" self.x = "-" self.y = "|" self.z = " "…