Q:

Python | Declare, assign and print the string (Different ways)

belongs to collection: Python String Programs

0

Declare string object, assign string (using different ways), and print the string in Python.

These are some of the ways to assign strings to the string object.

Ways Syntax Description
Way1 Single quotes
'Message'
Assign a single line string.
Way2 Double quotes
"Message"
Assign a single line string.
Way3 Triple single quotes
'''Message'''
Assign single line as well as multi-line string.
Way4 Triple double quotes
"""Message"""
Assign single line as well as multi-line string.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

# Declare, assign string (1)
# using single quotes 'string'
str1 = 'Hello world, How are you?'

# Declare, assign string (2)
# using double quotes "string"
str2 = "Hello world, How are you?"

# Declare assign string (3)
# using triple single quotes '''string'''
str3 = '''Hello world, How are you?'''

# Declare assign string (4)
# using triple double quotes """string"""
str4 = """Hello world, How are you?"""

# Declare, assign multi-line string (5)
# Triple double quotes allows to assign
# multi-line string
str5 = '''Hello world,
How are you?'''

# print the string
print "str1: ", str1
print "str2: ", str2
print "str3: ", str3 
print "str4: ", str4
print "str5: ", str5

Output

    str1:  Hello world, How are you?
    str2:  Hello world, How are you?
    str3:  Hello world, How are you?
    str4:  Hello world, How are you?
    str5:  Hello world,
    How are you?

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python String Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Python program to print a string, extract characte... >>
<< Python | Access and print characters from the stri...