Answers for "python store string with multiple lines"

1

assign multiline string to variable in python

a = """This is python progrmming
python is simple and easy to use"""
print(a)
Posted by: Guest on June-28-2021
1

how to print multiple strings on one line in python

number1 = 6
number2 = 10

print(number1, " + ", number2
Posted by: Guest on September-11-2020

Code answers related to "python store string with multiple lines"

Python Answers by Framework

Browse Popular Code Answers by Language