Answers for "python skip function"

0

skip error python

try:
  #line that could cause an error
except:
  pass  
#continue running code from here without stopping on the error
Posted by: Guest on July-05-2021
0

python skip line

# If you want to skip a line, then you can do that with "n"
print("Hellon Worldn!")
#It should print: 
#Hello
#World
#!
Posted by: Guest on June-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language