Is there a way to make lines of code continue on a different line of code? example:
a = raw_input("1 or 2")
if a == "1" :
a = raw_input("3 or 4")
if a == "3" :
*line of code that makes the script progress at line #14*
if a == "4" :
*line of code that makes the script progress at line #14*
if a = "2" :
a = raw_input("5 or 6")
if a == "5" :
*line of code that makes the script progress at line #14*
if a == "6" :
*line of code that makes the script progress at line #14*
print ("chocolate")
(^line #14^)