how to make a game on python

Solutions on MaxInterview for how to make a game on python by the best coders in the world

showing results for - "how to make a game on python"
Federico
07 Jan 2021
1#Easy game in python
2
3import random
4import time
5
6Passwordlist = ['abc123', '1234', '123456', 'QWERT', 'ASFDJKL;', '0102', '0', '100', '1000', '10000', '123', '2048', '1024', 'JSON', '1234567890']
7
8ans = input('Enter an account name: ')
9time.sleep(1)
10
11print('Finding the password for it...')
12time.sleep(1)
13print(random.choice(Passwordlist)+ ' is the password')
14