Files
small-python-projects/titres_SE.py
gauvainboiche 5d62489b37 First commit
2024-12-05 16:04:24 +01:00

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))]))