JJJ
0
Q:

games made with python

# Set up the screen
# Python 3.7.3 chromebook
# Turtle
import turtle

# Set up the screen
turtle.Screen()
wn = turtle.Screen()
wn.bgcolor("black")
wn.title("Ping Pong game by Aaryan")
wn.setup(width=800, height=600)
wn.tracer(0)

# Paddle A
paddle_a = turtle.Turtle()
paddle_a.speed(0)
paddle_a.color("white")
paddle_a.shape("square")
paddle_a.penup()
paddle_a.goto(-350, 0)
paddle_a.shapesize(stretch_wid = 5, stretch_len = 1)

# Paddle B
paddle_b = turtle.Turtle()
paddle_b.speed(0)
paddle_b.color("white")
paddle_b.shape("square")
paddle_b.penup()
paddle_b.goto(350, 0)
paddle_b.shapesize(stretch_wid = 5, stretch_len = 1)

paddle_aspeed = 20
paddle_bspeed = 20

# Ball
ball = turtle.Turtle()
ball.shape("circle")
ball.color("white")
ball.dy = 2
ball.dx = 2


# Function
def paddle_a_up():
    y = paddle_a.ycor()
    y += paddle_aspeed
    paddle_a.sety(y)

turtle.listen()
turtle.onkey(paddle_a_up, "Up")


def paddle_a_down():
    y = paddle_a.ycor()
    y -= paddle_aspeed
    paddle_a.sety(y)

turtle.listen()
turtle.onkey(paddle_a_down, "Down")

def paddle_b_up():
    y = paddle_b.ycor()
    y += paddle_bspeed
    paddle_b.sety(y)

turtle.listen()
turtle.onkey(paddle_b_up, "w")

def paddle_b_down():
    y = paddle_b.ycor()
    y -= paddle_bspeed
    paddle_b.sety(y)

turtle.listen()
turtle.onkey(paddle_b_down, "s")

# Main game loop
while True:
    wn.update()

7
Video games uses or made by using python python
1. Battlefield 2 uses Python for all of its add-ons and a lot of its functionality.
2. Bridge Commander
3. Civilization IV uses Python for most of its tasks
4. Disney's Toontown Online is written in Python and uses Panda3D for graphics.
5. Doki Doki Literature Club!, a psychological horror visual novel using the Ren'Py engine
6. Eve Online uses Stackless Python.
7. Freedom Force
8. Frets on Fire is written in Python and uses Pygame
9. Mount & Blade is written in Python.
10. Pirates of the Caribbean Online is written in Python and uses Panda3D for graphics.
11. The Sims 4 uses Python
12. The Temple of Elemental Evil, a computer role-playing game based on the classic Greyhawk Dungeons & Dragons campaign setting
13. Unity of Command (video game) is an operational-level wargame about the 1942/43 Stalingrad Campaign on the Eastern Front.
14. Vampire: The Masquerade – Bloodlines, a computer role-playing game based on the World of Darkness campaign setting
15. Vega Strike, an open source space simulator, uses Python for internal scripting
16. World of Tanks uses Python for most of its tasks.
5

New to Communities?

Join the community