The document outlines requirements for two Python projects - a calculator app with graphical UI and buttons for numbers and operations, and a two-player Tic Tac Toe game where players take turns marking grids with X or O and win by making a line.
The document outlines requirements for two Python projects - a calculator app with graphical UI and buttons for numbers and operations, and a two-player Tic Tac Toe game where players take turns marking grids with X or O and win by making a line.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Project 2 – Python Intermediate
Part-A Calculator: 50 marks
Requirements: a) Graphical UI using Tkinter Python Library b) Create buttons for numbers and buttons to perform several operations like addition, subtraction, multiplication, division.
Part-B Tic Tac Toe: 50 marks
Requirements: a. Two player game and should consist of nine square grids. b. Each player chooses their move and with O or X and marks their square one at each chance. c. The player who succeeds in making their marks all in one line whether diagonally, horizontally, or vertically wins. d. The challenge for the other player is to block the game for their opponent and to make their chain.