fork(2) download
  1. def fight_justify(s):
  2. s = input()
  3. void = 70 - len(s)
  4. print(void * " ")
  5. print(s)
  6.  
  7. fight_justify()
  8.  
Runtime error #stdin #stdout #stderr 0.02s 9936KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 7, in <module>
TypeError: fight_justify() missing 1 required positional argument: 's'