我需要编写一个函数,将我放入参数的名称随机分配给我放入另一个参数的团队。函数名称如下:def random(team,name)
它应该是这样的:
def random([“blue”,“russia”,“hat”],[“bob”,“sue”,“kim”])
答案 0 :(得分:0)
首先不要将random
用于函数名称。它是标准的Python模块名称,您应该阅读有关此模块的信息。在random
模块中,您可以找到choice()
函数,您可以这样使用:
def print_random_team(teams, names):
for name in names:
team = random.choice(teams)
print('%s is on the %s team' % (name, team))
print_random_team(["blue","russia","hat"],["bob","sue","kim"])