Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Print Your String | Strings
Data Types in Python

book
Print Your String

Good to see you again!

It's time to talk about a data type that has become an inseparable part of coding: strings. Strings are a way to input your everyday words into a Python program. Python recognizes specific words like "print," "if," and others as special, but for your own words, you need to enclose them in single quotes ('word') or double quotes ("word") – you can use either of these two ways.

Let's look at the example:

string1 = "cat"
string2 = 'cat'
print("The first output is", string1)
print("The second output is", string2)
1234
string1 = "cat" string2 = 'cat' print("The first output is", string1) print("The second output is", string2)
copy

There's another way to define strings that's not used as often, and it involves using triple quotes:

string = """
Hello, I am learning Python to receive the job of my dream.
By the way, even one task a day helps me inch my way towards success!
I am in control of my life, and I improve it every day!
"""

print(string)
1234567
string = """ Hello, I am learning Python to receive the job of my dream. By the way, even one task a day helps me inch my way towards success! I am in control of my life, and I improve it every day! """ print(string)
copy

This type of definition can be used when our string consists of several lines (we will receive an error otherwise):

string = 'Hello, I am learning Python to get the job of my dreams.
By the way, even one task a day helps me inch my way towards success!
I am in control of my life, and I improve it every day!'
123
string = 'Hello, I am learning Python to get the job of my dreams. By the way, even one task a day helps me inch my way towards success! I am in control of my life, and I improve it every day!'
copy
Task

Swipe to start coding

  1. Tell me about the weather in your city. Assign bad to the variable string1 if the weather outside is bad; otherwise, assign good.
  2. Tell me about your mood today! Assign could be better to the variable string2 if your mood is not okay; otherwise, assign could not be better.
  3. Now tell me if your mood depends on the weather. Assign yes to the variable string3 if it depends; otherwise, assign no.

Solution

# Assign `bad` or `good` to the variable
string1 = "good"
# Assign `could be better` or `could not be better` to the variable
string2 = "could not be better"
# Assign `yes` or `no` to the variable
string3 = "yes"

print("The weather outside is", string1)
print("My mood today is", string2)
print("Does my mood depend on weather? -", string3)

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 1
# Assign `bad` or `good` to the variable
string1 = ___
# Assign `could be better` or `could not be better` to the variable
string2 = ___
# Assign `yes` or `no` to the variable
string3 = ___

print("The weather outside is", string1)
print("My mood today is", string2)
print("Does my mood depend on weather? -", string3)
toggle bottom row
some-alt