Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. import os
  2. champlist = {
  3.     "rek": "reksai",
  4.     "lee": "leesin",
  5.     "nida": "nidalee",
  6.     "kha": "khazix",
  7.     "heca": "hecarim",
  8.     "tf": "twistedfate",
  9.  
  10.  
  11.  
  12.     "z": "zed"
  13. }
  14. while (True):
  15.     champ = input(">>> ")
  16.     if champ in champlist:
  17.         champ = champlist[champ]
  18.     run = "start firefox https://u.gg/lol/champions/{}/build".format(champ)
  19.     os.system(run)
  20.     print("\n\n")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement