""" ------------------------------------------------- Project: 21 Game Standard: 91883 (AS1.7) v.1 School: Tauranga Boys' College Author: Keahnu Tai Walters Date: N/A Python: 3.5 ------------------------------------------------- """ import time import random import os,sys,random # def slowWriting(txt, speed=0.01): for c in txt: print(c, end='', flush=True) time.sleep(speed) print("\n") def clear(): os.system('cls' if os.name=='nt' else 'clear') def variables(): PlayerOne = 1 PlayerTwo = 2 Name1 = PlayerOne Name2 = PlayerTwo def title(): print("██████████████████████████████████████████████████████████████████████████████████████████████████") print("█░░░░░░░░░░░░░░█░░░░░░░░██████░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░██████████░░░░░░█░░░░░░░░░░░░░░█") print("█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀░░██████░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░░░░░░░░░░░░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█") print("█░░░░░░░░░░▄▀░░█░░░░▄▀░░██████░░▄▀░░░░░░░░░░█░░▄▀░░░░░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░░░░░░░░░█") print("█████████░░▄▀░░███░░▄▀░░██████░░▄▀░░█████████░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░▄▀░░░░░░▄▀░░█░░▄▀░░█████████") print("█░░░░░░░░░░▄▀░░███░░▄▀░░██████░░▄▀░░█████████░░▄▀░░░░░░▄▀░░█░░▄▀░░██░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░░░░░█") print("█░░▄▀▄▀▄▀▄▀▄▀░░███░░▄▀░░██████░░▄▀░░██░░░░░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░██░░▄▀░░██░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█") print("█░░▄▀░░░░░░░░░░███░░▄▀░░██████░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░▄▀░░█░░▄▀░░██░░░░░░██░░▄▀░░█░░▄▀░░░░░░░░░░█") print("█░░▄▀░░███████████░░▄▀░░██████░░▄▀░░██░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░██████████░░▄▀░░█░░▄▀░░█████████") print("█░░▄▀░░░░░░░░░░█░░░░▄▀░░░░████░░▄▀░░░░░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░██████████░░▄▀░░█░░▄▀░░░░░░░░░░█") print("█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀░░████░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░██████████░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█") print("█░░░░░░░░░░░░░░█░░░░░░░░░░████░░░░░░░░░░░░░░█░░░░░░██░░░░░░█░░░░░░██████████░░░░░░█░░░░░░░░░░░░░░█") print("██████████████████████████████████████████████████████████████████████████████████████████████████") def setup(): global Name1 global Name2 print(" ") time.sleep(0.1) print(" ") time.sleep(0.3) Name1 = input("What is your name P1?") print(" ") print(" ") time.sleep(0.3) Name2 = input("What is your name P2?") clear() title() setup() print("hi", Name2, ", Pick a number from") print("0 to 100")