search
HomeBackend DevelopmentPython TutorialMake a simple tic-tac-toe game in Python

Make a simple tic-tac-toe game in Python

Apr 05, 2017 pm 02:53 PM
pythongameSimple

In this tutorial, I will show you how to make a tic-tac-toe game using Python. This will include functions, lists, if statements, while loops, for loops, error handling, and more.

First, we will create two functions. The first function will print out the background template of the tic-tac-toe game:

def print_board():
    for i in range(0,3):
        for j in range(0,3):
            print map[2-i][j],
            if j != 2:
                print "|",
        print ""

Here, we use two for loops to traverse a list variable named map. This variable is a two-dimensional list that will hold information for each location.

Since I'll be comparing the positions to the numbers on the keypad (as you'll see later), the first value we'll set is (2-i), and then we want to use "|" is used to divide our positions, so after each position is printed, we print a "|" for it, where we print map[2-i] [j], uses commas to ensure that they are printed on the same line.

Now, this function can print the background of a game. It looks like this:

  |   |   
  |   |   
  |   |
X | X |   
O | X | O 
  | O | X
X | X | X 
X | X | X 
X | X | X

Next, we create a check_done() function, which will check whether the game is over after each round. If the game is over, then return True and print a message.

def check_done():
    for i in range(0,3):
        if map[i][0] == map[i][1] == map[i][2] != " " \
        or map[0][i] == map[1][i] == map[2][i] != " ":
            print turn, "won!!!"
            return True

    if map[0][0] == map[1][1] == map[2][2] != " " \
    or map[0][2] == map[1][1] == map[2][0] != " ":
        print turn, "won!!!"
        return True

    if " " not in map[0] and " " not in map[1] and " " not in map[2]:
        print "Draw"
        return True

    return False

First, we will check whether there are three rows in the horizontal and vertical directions that are the same and not empty (so he will not consider three consecutive blank rows as eligible). Second, we check the diagonal lines in the same way. .

If one of these 8 lines meets the conditions, the game will end and "Won!!!" will be printed out and True will be returned. At the same time, pay attention to the turn variable, which is used to determine the next move. Whichever side is playing chess, the final message will be "X won!!" or "O won!!".

Next, this function will judge that if no position is empty, it means that no one can win the game (judged earlier), then it will print out a tie and return True.

If there are neither of the above two situations, then the game is not over yet and False will be returned.

OK, now we have two functions, let’s start our real program, first create three variables:

turn = "X"
map = [[" "," "," "],
       [" "," "," "],
       [" "," "," "]]
done = False

I have already told you what these three variables mean. If you have forgotten, then take a look below:

  • turn: Who should go


  • map: The background map of the game


  • done: Is this game ever over?

Next, write like this:

while done != True:
    print_board()

    print turn, "'s turn"
    print

    moved = False
    while moved != True:

There is a while loop inside, until done is True, we print out whose turn it is to go.

Then create a variable named moved to check whether the player has moved. If not, enter the next loop.

Next, we print how the player should go:

print "Please select position by typing in a number between 1 and 9, see below for which number that is which position..."
print "7|8|9"
print "4|5|6"
print "1|2|3"
print

Next:

try:
    pos = input("Select: ")
    if pos <=9 and pos >=1:

We want the player to enter a number, and then we check whether it is between 1 and 9. At the same time, we have to add an error handling. For example, if the player enters "Hello", the program cannot just exit.

Now, we need to check whether he can take this step:

Y = pos/3
X = pos%3
if X != 0:
    X -=1
else:
    X = 2
    Y -=1

Haha, keep your eyes open. First, we get a value of X and Y, and then use them to check whether the position he wants to place is empty. Next, I will explain to you how X and Y work. :

  • ## Position 1: Y = 1/3 = 0, X = 1%3 = 1; x -= 1 = 0


  • Position 2: Y = 2/3 = 0, X = 2%3 = 2; X -= 1 = 1


  • Position 3: Y = 3/3 = 1, X = 3%3 = 0; X = 2, Y -= 1 = 0


  • ……

You can do the math below, and I will jump right to the conclusion (Damn, Hexo’s default template does not display tables. When I edited it on mou, it was much prettier than the one below!):

Y\X x=0 x=1 x=2 y=2 7 8 9 y=1 4 5 6 y=0 1 2 3

  aha,这个位置和我们键入的是一样的!

print "7|8|9"
print "4|5|6"
print "1|2|3"

  现在我们完成大部分工作了,但是还有几行代码:

map[Y][X] = turn
moved = True
done = check_done()

if done == False:
    if turn == "X":
        turn = "O"
    else:
        turn = "X"

except:
    print "You need to add a numeric value"

  嗯,我们给moved变量复制为True,并检查是否结束了,木有结束的话变换角色换下一个人走。

  OK,差不多结束了,假如你只是想Ctrl+C 和 Ctrl+V的话,下面是全部的代码,希望你学到了点什么,( ^_^ )/~~拜拜。

def print_board():
    for i in range(0,3):
        for j in range(0,3):
            print map[2-i][j],
            if j != 2:
                print "|",
        print ""

def check_done():
    for i in range(0,3):
        if map[i][0] == map[i][1] == map[i][2] != " " \
        or map[0][i] == map[1][i] == map[2][i] != " ":
            print turn, "won!!!"
            return True

    if map[0][0] == map[1][1] == map[2][2] != " " \
    or map[0][2] == map[1][1] == map[2][0] != " ":
        print turn, "won!!!"
        return True

    if " " not in map[0] and " " not in map[1] and " " not in map[2]:
        print "Draw"
        return True

    return False

turn = "X"
map = [[" "," "," "],
       [" "," "," "],
       [" "," "," "]]
done = False

while done != True:
    print_board()

    print turn, "&#39;s turn"
    print

    moved = False
    while moved != True:
        print "Please select position by typing in a number between 1 and 9, see below for which number that is which position..."
        print "7|8|9"
        print "4|5|6"
        print "1|2|3"
        print

        try:
            pos = input("Select: ")
            if pos <=9 and pos >=1:
                Y = pos/3
                X = pos%3
                if X != 0:
                    X -=1
                else:
                     X = 2
                     Y -=1

                if map[Y][X] == " ":
                    map[Y][X] = turn
                    moved = True
                    done = check_done()

                    if done == False:
                        if turn == "X":
                            turn = "O"
                        else:
                            turn = "X"

        except:
            print "You need to add a numeric value"

  原文出处: Vswe


The above is the detailed content of Make a simple tic-tac-toe game in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python vs. C  : Understanding the Key DifferencesPython vs. C : Understanding the Key DifferencesApr 21, 2025 am 12:18 AM

Python and C each have their own advantages, and the choice should be based on project requirements. 1) Python is suitable for rapid development and data processing due to its concise syntax and dynamic typing. 2)C is suitable for high performance and system programming due to its static typing and manual memory management.

Python vs. C  : Which Language to Choose for Your Project?Python vs. C : Which Language to Choose for Your Project?Apr 21, 2025 am 12:17 AM

Choosing Python or C depends on project requirements: 1) If you need rapid development, data processing and prototype design, choose Python; 2) If you need high performance, low latency and close hardware control, choose C.

Reaching Your Python Goals: The Power of 2 Hours DailyReaching Your Python Goals: The Power of 2 Hours DailyApr 20, 2025 am 12:21 AM

By investing 2 hours of Python learning every day, you can effectively improve your programming skills. 1. Learn new knowledge: read documents or watch tutorials. 2. Practice: Write code and complete exercises. 3. Review: Consolidate the content you have learned. 4. Project practice: Apply what you have learned in actual projects. Such a structured learning plan can help you systematically master Python and achieve career goals.

Maximizing 2 Hours: Effective Python Learning StrategiesMaximizing 2 Hours: Effective Python Learning StrategiesApr 20, 2025 am 12:20 AM

Methods to learn Python efficiently within two hours include: 1. Review the basic knowledge and ensure that you are familiar with Python installation and basic syntax; 2. Understand the core concepts of Python, such as variables, lists, functions, etc.; 3. Master basic and advanced usage by using examples; 4. Learn common errors and debugging techniques; 5. Apply performance optimization and best practices, such as using list comprehensions and following the PEP8 style guide.

Choosing Between Python and C  : The Right Language for YouChoosing Between Python and C : The Right Language for YouApr 20, 2025 am 12:20 AM

Python is suitable for beginners and data science, and C is suitable for system programming and game development. 1. Python is simple and easy to use, suitable for data science and web development. 2.C provides high performance and control, suitable for game development and system programming. The choice should be based on project needs and personal interests.

Python vs. C  : A Comparative Analysis of Programming LanguagesPython vs. C : A Comparative Analysis of Programming LanguagesApr 20, 2025 am 12:14 AM

Python is more suitable for data science and rapid development, while C is more suitable for high performance and system programming. 1. Python syntax is concise and easy to learn, suitable for data processing and scientific computing. 2.C has complex syntax but excellent performance and is often used in game development and system programming.

2 Hours a Day: The Potential of Python Learning2 Hours a Day: The Potential of Python LearningApr 20, 2025 am 12:14 AM

It is feasible to invest two hours a day to learn Python. 1. Learn new knowledge: Learn new concepts in one hour, such as lists and dictionaries. 2. Practice and exercises: Use one hour to perform programming exercises, such as writing small programs. Through reasonable planning and perseverance, you can master the core concepts of Python in a short time.

Python vs. C  : Learning Curves and Ease of UsePython vs. C : Learning Curves and Ease of UseApr 19, 2025 am 12:20 AM

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.