Comment laisser certains paramètres dans Python et laisser la valeur être n'importe quoi

#With Function
def player_run():
  pass
print(player_run())
#with class
class User:
  pass
Programmer of empires