Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Coding Python to make a game similar to Tic-Tac-Toe
Post: RE: Coding Python to make a game similar to Tic-Ta...

Yea, so you literally have to code a strategy where you would beat the agent_cat, who picks randomly, every time.
AdamJae Homework 3 2,196 Oct-23-2019, 02:49 PM
    Thread: Coding Python to make a game similar to Tic-Tac-Toe
Post: Coding Python to make a game similar to Tic-Tac-To...

Hello all, so my Professor has set an assignment for me to complete. Here are the details on it: He wants me to produce a game with tiles numbered 1 to N = 9 inclusive. Two players take turns, pickin...
AdamJae Homework 3 2,196 Oct-23-2019, 11:51 AM
    Thread: Factors ERROR
Post: RE: Factors ERROR

Oh, I am so stupid... Thank you very much!
AdamJae Homework 2 2,024 Oct-22-2019, 05:58 PM
    Thread: Factors ERROR
Post: Factors ERROR

def factors(n): list = [] for x in range(2, n+1): while n % x == 0: list.append(x) n = n//x if n == 1: return listI produced some code to give me...
AdamJae Homework 2 2,024 Oct-22-2019, 05:41 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020