0
explain please!!
>>> print(3 * '7') File "<stdin>", line 1 print(3 * '7') ^ IndentationError: unexpected indent
1 Respuesta
+ 4
delete the empty space in front of it. Its reading an indentation that should not be there
>>> print(3 * '7') File "<stdin>", line 1 print(3 * '7') ^ IndentationError: unexpected indent