I am trying to write a jump over command in Python.
The code needs to include input ('Press enter ...')
command, but if the input isn't given at a certain time, it needs to jump over the input section and continue the code as if the input was given. How do I do this??
Example:
input("To start a loop press Enter:")
for x in range 10
print (x)
print("loop trough")