Syntaxerror Print(*args, **kwargs)
I've got an error as a traceback below: Traceback (most recent call last): File 'setup_rouge.py', line 7, in from files2rouge import settings File '/home/cer
Solution 1:
Try print(args, kwargs)
instead of print(*args, **kwargs)
Post a Comment for "Syntaxerror Print(*args, **kwargs)"