Answers for "python game"

11

python game engine

# All python game engines here, just choose :
# https://www.gamefromscratch.com/post/2018/09/13/Python-Game-Engines.aspx
Posted by: Guest on May-29-2020
11

games made with python

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.
Posted by: Guest on May-30-2020
0

how to make a game in python

# Snake Game

import turtle
import random
import time

score = 0

# screen
screen = turtle.Screen()
screen.bgcolor("black")
screen.title("Snake Game By Atharva")
screen.tracer(0)

# Snake
snake = turtle.Turtle()
snake.shape("square")
snake.color("green")
snake.penup()
snake_pos = "None"

# apple
apple = turtle.Turtle()
apple.shape("circle")
apple.color("red")
apple.penup()
apple.goto(0, 100)

# classes


class SnakeMovements:
  y = 0
  x = 0
  snpos = snake_pos
  
  snpos = None
	def main(self):
      if self.snpos == "up":
        self.y = snake.ycor()
        snake.sety(self.y + 15)
        
      if self.snpos == "down":
        self.y = snake.ycor()
        snake.sety(self.y - 15)
        
      if self.snpos == "right":
        self.x = snake.xcor()
        snake.setx(self.x + 15)
        
      if self.snpos == "left":
        self.x = snake.xcor()
        snake.setx(self.x - 15)
        
    def SnakeUp(self):
      self.snpos = "up"
      
    def SnakeDown(self):
      self.snpos = "down"
      
    def SnakeRight(self):
      self.snpos = "right"
      
    def SnakeLeft(self):
      self.snpos = "left"
      
instanceVar = SnakeMovements()

# Keyboard Binding

screen.listen()
screen.onkeypress(instanceVar.SnakeUp, "Up")
screen.onkeypress(instanceVar.SnakeDown, "Down")
screen.onkeypress(instanceVar.SnakeRight, "Right")
screen.onkeypress(instanceVar.SnakeLeft, "Left")

# Mainloop of the game

while True:
  if snake.distance(apple) < 20:
    score += 1
    print(score)
    applex = random.randint(-290, 290)
    appley = random.randint(-290, 290)
    apple.goto(applex, appley)
    
    time.sleep(0.1)
  
  instanceVar.main()
  screen.update()
Posted by: Guest on November-30-2020
1

code for python shell 3.8.5 games

import os
os.system('pip install pygame')
input("PyGame installed.")
Posted by: Guest on November-25-2020
0

python games

#Imports libraiy

import random
import sys
import time
 
 #Gets player info

print("For this game we need your info so we can make the game more realistic.")
name = input("What is your name?n")
age = input("How old are you?n")
fpn = input("What is your first pet's name?n")
game = input("What is your favoutite game?n")
print("The game will now beginn")

rnumber = random.randint(1, 456)

#assighns user

print(f"""You are number {rnumber} in this game.n
We know all your info like, your name is {name}.n
And that you are {age} years old.n
And that your first pets name is {fpn}.n
And that your favourite game is {game}.n""")

#game starts

answer = input("Are you willing to play this game? (yes/ no)n")

if answer == "yes":
    print("Very well")

else:
    print(f"Player {rnumber} has been eliminated")
    sys.exit()

print("The first game will start in 5 seconds")

print("5")
time.sleep(1)
print("4")
time.sleep(1)
print("3")
time.sleep(1)
print("2")
time.sleep(1)
print("1")
time.sleep(1)

print("Now")

print("The first game will be adding")

num1 = random.randint(1, 10)

num2 = random.randint(1, 10)

answer = int(input(f"What is {num1} + {num2}?n"))

if answer == (num1 + num2):
    print("Correct")

else:
    print(f"Player {rnumber} has been eliminated.")
    sys.exit()

num1 = random.randint(1, 10)

num2 = random.randint(1, 10)

answer = int(input(f"What is {num1} + {num2}?n"))

if answer == (num1 + num2):
    print("Correct")

else:
    print(f"Player {rnumber} has been eliminated.")
    sys.exit()

num1 = random.randint(1, 10)

num2 = random.randint(1, 10)

answer = int(input(f"What is {num1} + {num2}?n"))

if answer == (num1 + num2):
    print("Correct")

else:
    print(f"Player {rnumber} has been eliminated.")
    sys.exit()

print(f"Player {rnumber} pass.")
time.sleep(2)

print(f"Player {rnumber}, Please get to bed for the game 2 tommorow")
Posted by: Guest on October-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language