I cant seem to get phyton to let me write more than one line , when i use i get errors when i run [on...

Are there any other Chaos worshipping races?

How to lift/raise/repair a segment of concrete slab?

Are paired adjectives bad style?

How to kill a localhost:8080

Center single line(s) in align

How do you say "powers of ten"?

Six real numbers so that product of any five is the sixth one

Get length of the longest sequence of numbers with the same sign

A "strange" unit radio astronomy

Can I become debt free or should I file for bankruptcy? How do I manage my debt and finances?

What happened to QGIS 2.x

How can I handle a player who pre-plans arguments about my rulings on RAW?

Is there a full canon version of Tyrion's jackass/honeycomb joke?

What should one use the left pedal for on an upright?

How would we write a misogynistic character without offending people?

What are all the squawk codes?

A right or the right?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

Did Amazon pay $0 in taxes last year?

Real life puzzle: Unknown alphabet or shorthand

The need of reserving one's ability in job interviews

How can I be pwned if I'm not registered on the compromised site?

When was drinking water recognized as crucial in marathon running?

What type of postprocessing gives the effect of people standing out



I cant seem to get phyton to let me write more than one line , when i use i get errors when i run [on hold]


What is the syntax of Apache's configuration files?Matching a number sequence in grepVim: What do these short names / verbs like <leader>, <C-r> mean?wget ftp with credentials for a list of filesWhen creating multiple new lines, Sublime only leaves indented the final the line I end up on, and not those above itParsing by Value / ReferenceCreate a URL that opens a web page at specified textWhich function is was used to correct bug of the wrong tower move position in Deep Blue vs Kasparov (1997)?Fitting More Code On Printed Page In Notepad++How long does a complex code take to compile













-2


















print "welcome"
item = raw_input("what would you like to check")
welcome
print "welcome"
item = raw_input(["what would you like to check?])













share|improve this question







New contributor




Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as off-topic by n8te, Scott, Ramhound, Mokubai 10 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "This question is not about computer hardware or software, within the scope defined in the help center." – n8te, Ramhound, Mokubai

If this question can be reworded to fit the rules in the help center, please edit the question.

















  • Hi Stephen, welcome to Superuser! Your question isn't entirely clear so please try to review it to make it more intelligible. I've posted an answer below that may respond to your needs.

    – baelx
    18 hours ago
















-2


















print "welcome"
item = raw_input("what would you like to check")
welcome
print "welcome"
item = raw_input(["what would you like to check?])













share|improve this question







New contributor




Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as off-topic by n8te, Scott, Ramhound, Mokubai 10 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "This question is not about computer hardware or software, within the scope defined in the help center." – n8te, Ramhound, Mokubai

If this question can be reworded to fit the rules in the help center, please edit the question.

















  • Hi Stephen, welcome to Superuser! Your question isn't entirely clear so please try to review it to make it more intelligible. I've posted an answer below that may respond to your needs.

    – baelx
    18 hours ago














-2












-2








-2


1









print "welcome"
item = raw_input("what would you like to check")
welcome
print "welcome"
item = raw_input(["what would you like to check?])













share|improve this question







New contributor




Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.















print "welcome"
item = raw_input("what would you like to check")
welcome
print "welcome"
item = raw_input(["what would you like to check?])










code syntax






share|improve this question







New contributor




Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 19 hours ago









Stephen DarganStephen Dargan

1




1




New contributor




Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Stephen Dargan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




put on hold as off-topic by n8te, Scott, Ramhound, Mokubai 10 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "This question is not about computer hardware or software, within the scope defined in the help center." – n8te, Ramhound, Mokubai

If this question can be reworded to fit the rules in the help center, please edit the question.







put on hold as off-topic by n8te, Scott, Ramhound, Mokubai 10 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "This question is not about computer hardware or software, within the scope defined in the help center." – n8te, Ramhound, Mokubai

If this question can be reworded to fit the rules in the help center, please edit the question.













  • Hi Stephen, welcome to Superuser! Your question isn't entirely clear so please try to review it to make it more intelligible. I've posted an answer below that may respond to your needs.

    – baelx
    18 hours ago



















  • Hi Stephen, welcome to Superuser! Your question isn't entirely clear so please try to review it to make it more intelligible. I've posted an answer below that may respond to your needs.

    – baelx
    18 hours ago

















Hi Stephen, welcome to Superuser! Your question isn't entirely clear so please try to review it to make it more intelligible. I've posted an answer below that may respond to your needs.

– baelx
18 hours ago





Hi Stephen, welcome to Superuser! Your question isn't entirely clear so please try to review it to make it more intelligible. I've posted an answer below that may respond to your needs.

– baelx
18 hours ago










1 Answer
1






active

oldest

votes


















-1














Your question isn't super clear. It seems like you've copied a few lines right from a Python REPL. Note that if you do this verbatim, some of the characters will be interpreted as markdown in Superuser's text fields.



If you're trying to write a program that accepts multiple lines of user input it would look something like this:



number_of_lines = 5
item = ""
for i in xrange(5):
item+=raw_input("what would you like to check ")+"n"

print item





share|improve this answer






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    -1














    Your question isn't super clear. It seems like you've copied a few lines right from a Python REPL. Note that if you do this verbatim, some of the characters will be interpreted as markdown in Superuser's text fields.



    If you're trying to write a program that accepts multiple lines of user input it would look something like this:



    number_of_lines = 5
    item = ""
    for i in xrange(5):
    item+=raw_input("what would you like to check ")+"n"

    print item





    share|improve this answer




























      -1














      Your question isn't super clear. It seems like you've copied a few lines right from a Python REPL. Note that if you do this verbatim, some of the characters will be interpreted as markdown in Superuser's text fields.



      If you're trying to write a program that accepts multiple lines of user input it would look something like this:



      number_of_lines = 5
      item = ""
      for i in xrange(5):
      item+=raw_input("what would you like to check ")+"n"

      print item





      share|improve this answer


























        -1












        -1








        -1







        Your question isn't super clear. It seems like you've copied a few lines right from a Python REPL. Note that if you do this verbatim, some of the characters will be interpreted as markdown in Superuser's text fields.



        If you're trying to write a program that accepts multiple lines of user input it would look something like this:



        number_of_lines = 5
        item = ""
        for i in xrange(5):
        item+=raw_input("what would you like to check ")+"n"

        print item





        share|improve this answer













        Your question isn't super clear. It seems like you've copied a few lines right from a Python REPL. Note that if you do this verbatim, some of the characters will be interpreted as markdown in Superuser's text fields.



        If you're trying to write a program that accepts multiple lines of user input it would look something like this:



        number_of_lines = 5
        item = ""
        for i in xrange(5):
        item+=raw_input("what would you like to check ")+"n"

        print item






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 18 hours ago









        baelxbaelx

        1,079615




        1,079615