I hope this is where I ask questions about things I should probably already know…
I’m trying to code a while loop in a jupyter notebook (python3) in the following way:
run = True
while run:
some stuff
Jupyter keeps throwing a syntax error at the line ‘run = True’
I assume there is actually a way to assign a variable a boolean value in jupyter?..