Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.56 KB | None | 0 0
  1.    Lane = input("Which lane do you always go ? ")
  2.  
  3.    #Start off empty.
  4.    answer = ""
  5.    
  6.    #For each choice we *didn't* choose, *add* it to the answer.
  7.    if (Lane != "Top"):
  8.        answer += random.choice(Top)
  9.    elif (Lane != "Jungle"):
  10.        answer += random.choice(Jungle)
  11.    elif(Lane != "Mid"):
  12.        answer += random.choice(Mid)
  13.    elif(Lane != "ADC"):
  14.        answer += random.choice(ADC)
  15.    elif(Lane != "Support"):
  16.        answer += random.choice(Support)
  17.    else:
  18.        answer = "Error. That's not a proper choice."
  19.    
  20.    print(answer)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement