Answers for "python multi-line statement"

0

python multi-line statement

message = "Hello There.\nYou have come to the right place to learn Python Programming.\n" \
          "Follow the tutorials to become expert in Python. " \
          "Don't forget to share it with your friends too."
 
math_result = 1 + 2 + 3 + 4 + \
              5 + 6 + 7 + 8 + \
              9 + 10
 
print(message)
print(math_result)
Posted by: Guest on October-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language