Wie man einige Parameter in Python hinterlässt und den Wert irgendetwas ist

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