SarkariResultess QA Bank

Answer & Explanation

4 Answers
Verified

text = <<Hello World>>

text = <>
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

text = """Hello\nWorld"""

text = """Hello\nWorld"""
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

text = multiline('Hello World')

text = multiline('Hello World')
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified Correct Answer

text = '''Hello World'''

text = '''Hello World'''
Additional Explanation
Triple quotes multiline strings के लिए उपयोग किए जाते हैं।