Followers
0
Following
0
Joined
Last Online
-
DaCondor54
Hi, I’ve discovered pythonista keyboard pikey and I wanted to use the feature REPL which lets you write code anywhere where you can type. I wanted to write a nested for loop but I keep getting indentation errors. I wrote
“>>> for x in range (10):
... for y in range(10):
... print(‘#’, end =‘’) # I don’t know how to indent this line
... print()
The “>>>” means start of code and “... ”( with 3 spaces) are for indentation I think? I would like to know if it’s possible to create a table of ‘#’ or to double indent in this REPL feature. Thanks