5 lines
245 B
Python
5 lines
245 B
Python
from random import randrange
|
|
|
|
games = ["Final Fantasy", "Marvel\'s Avengers", "Guardians of the Galaxy", "Tomb Raider", "Hitman", "Sleeping Dogs"]
|
|
|
|
print("Square Enix say that %s sales are below expectations" % (games[randrange(0, len(games))])) |