Home »
Python »
Python Programs
Python | Declare, assign and print the string (Different ways)
Here, we will learn how to declare, assign and print the string using different ways in Python?
Submitted by IncludeHelp, on August 01, 2018
Declare string object, assign string (using different ways), and print the string in Python.
Assign strings
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. |
Python program to declare, assign and print the string
# 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
The output of the above program is:
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?
Python String Programs »