Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. #use different champion, dammit!
  2. import random
  3.  
  4. Top = ["Maokai", "Lissandra", "Hecarim", "Gnar", "Sion"]
  5. Jungle = ["RekSai", "Sejuani", "Nunu", "Udyr", "Jarvan IV"]
  6. Mid = ["Orianna", "Urgot", "ChoGath", "Diana", "Yasuo"]
  7. ADC = ["Kalista", "Jinx", "Sivir", "Corki", "Lucian"]
  8. Support = ["Leona", "Janna", "Nautilus", "Thresh", "Kennen"]
  9.  
  10. def Calc():
  11. Lane = input("Which lane do you always go ? ") [#in here, if people input "Top", that means in the answer there shouldnt be any Top list include
  12. Champion = input("Which Champion do you always use ? ")
  13.  
  14. answer = random.choice(Top), random.choice(Jungle), random.choice(Mid), random.choice(ADC), random.choice(Support)
  15. print(answer)
  16.  
  17. Calc()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement