Advertisement
jhoward48

Untitled

Dec 11th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. # week two course 02 using lists
  2. from random import choice
  3. import time
  4. from random import sample
  5. teamA=[]
  6. teamB=[]
  7. players =["Jacqueline", " Jane", "James", "Jason", "Jacob", "Jenny"]
  8. print(players)
  9. def build_a_team(team):
  10.      
  11.      team=sample(players,3)
  12.      print (team)
  13.      for player in team:
  14.           players.remove(player)
  15.    
  16. build_a_team(teamA)
  17. build_a_team(teamB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement