Answers for "how to take multiple line input in python"

5

multiline input in python

print("Enter the array:n")   
userInput = input().splitlines()
print(userInput)
Posted by: Guest on August-13-2020
2

multiline input in python

import sys
userInput = sys.stdin.readlines()
Posted by: Guest on August-13-2020
4

print multiple lines python

#You can use n to create a carriage return.
print("first linenSecond line")

#Or use the following syntax to replace the commas with n
#to create carriage returns for each line.

print("first line", "second line", sep="n")

#Or use triple quotation marks at the start and end of 
#the text and format the text how you want it to appear.

print("""
Line1
Line2
""")
Posted by: Guest on November-17-2019
2

input two numbers in python in a single line

inputs = []for i in range(3):  # loop 3 times	inputs.append(input())
Posted by: Guest on May-09-2020
2

multiple line input python

lines = []
while True:
    line = input()
    if line:
        lines.append(line)
    else:
        break
text = 'n'.join(lines)
Posted by: Guest on February-03-2021

Code answers related to "how to take multiple line input in python"

Python Answers by Framework

Browse Popular Code Answers by Language