Code: Select all
print('x', flush=True)
Code: Select all
File "<stdin>", line 1, in <module>
TypeError: extra keyword arguments given
Code: Select all
def print(
*values: object, sep: Optional[Text] = ..., end: Optional[Text] = ..., file: Optional[_Writer] = ..., flush: bool = ...
) -> None: ...