Answers for "Python by Building Games"

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

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