Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.60 KB | None | 0 0
  1. import itertools
  2.  
  3. genres = [
  4.     "plataformer",
  5.     "shooter",
  6.     "fighting game",
  7.     "beat'em up",
  8.     "horror",
  9.     "rythm game",
  10.     "Metroidvania",
  11.     "text adventure",
  12.     "graphic adventure",
  13.     "visual novels",
  14.     "interactive movie",
  15.     "3D adventure games",
  16.     "action rpg",
  17.     "mmorpg",
  18.     "rogue-likes",
  19.     "tatical rpg",
  20.     "sandbox rpg",
  21.     "first-person party-based rpg",
  22.     "management simulation",
  23.     "life simulation",
  24.     "vehicle simulation",
  25.     "4x game",
  26.     "artillery game",
  27.     "rts",
  28.     "real time tatics",
  29.     "moba",
  30.     "tower defense",
  31.     "turn based strategy",
  32.     "turn based tatics",
  33.     "wargame",
  34.     "grand strategy wargame",
  35.     "racing",
  36.     "sports",
  37.     "sport based fighting",
  38.     "party games",
  39.     "programming game",
  40.     "logic game",
  41.     "trivia game",
  42.     "board game",
  43.     "card game",
  44.     "idle game",
  45.     "puzzle",
  46.     "open world",
  47.     "survival",
  48.     "third person",
  49.     "shoot 'em up",
  50.     "physics based",
  51.     "building",
  52.     "walk simulator",
  53.     "hidden object",
  54.     "crafting",
  55.     "hack and slash",
  56.     "bullet hell",
  57.     "character customization",
  58.     "datingSim",
  59.     "jrpg",
  60.     "dungeon crawler",
  61.     "team based",
  62.     "military",
  63.     "parkour",
  64.     "twin stick shooter",
  65.     "3D plataformer",
  66.     "flighting sim",
  67.     "economy",
  68.     "arena shooter",
  69.     "match 3",
  70.     "abstract",
  71.     "space sim",
  72.     "otome",
  73.     "god game",
  74.     "on-rails shooter",
  75.     "typing game",
  76.     "lemming",
  77.     "mini golf"
  78. ]
  79.  
  80. for g1, g2 in itertools.permutations(genres, 2):
  81.     print(g1 + " " + g2 + "\n")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement