def new_game():
global user
name = click.prompt('\nCongratulations on becoming a manager! What is your name?', confirmation_prompt=True)
user = gen.Manager(name)
print('\n')
click.clear()
print('Here are the list of teams in the league:')
for n in range(10):
print('%s) %s' % (str(n + 1), user.get_league().get_team_list()[n].get_name()))
team_selection()
评论列表
文章目录