Skip to content

Instantly share code, notes, and snippets.

View Kang-Hoon's full-sized avatar

Kanghoon Kang-Hoon

View GitHub Profile
@codeboy101
codeboy101 / footballManage2.py
Created January 13, 2016 12:33
a football manager game made in python 3.5 , level:beginner
import random
import time
my_team_name = input('name your team: ')
opp_team_names = ['ice slayers' , 'crazy cats' , 'red devils' , 'blue walls']
opp_team_name = random.choice(opp_team_names)
print('your match is against {}'.format(opp_team_name))
pass_text = [' gives the ball to ' , ' passes it to ' , ' sharply gives it to ' , ' puts it in the path of ']
defend_text = [' performs a great tackle ' , ' comes up with a meaty tackle ']
shoot_text = [ 'hits the ball ' , ' curls it towards the goal ' , ' shoots ']