Course Content
Introduction to Python
Introduction to Python
3. Conditional Statements
Boolean Data TypeChallenge: Comparison OperatorsCombining ConditionsChallenge: Logical OperatorsMembership Operators and Types ComparisonSimple if/else ExpressionsChallenge: Grocery StoreChallenge: Odd and Evenif/elif/else ExpressionsChallenge: Grocery Store ExtendedChallenge: Positive, Negative or Zero
Storing Text
In the first chapter, you learned how to display the message "Hello world!"
in Python. This message is known as a string. In Python, strings are used to store text, which can also include numbers.
To store text in Python, you need to surround it with quotation marks (either single or double). For instance, you can store the word "Python"
in the language
variable and then display it:
# Save string within variable language = 'Python' # Output string print(language)
Note
Quotation marks are mandatory. If you omit them, you'll get an error.
If you want to change an object into a string type, use the str()
function.
Assign the course name 'Introduction to Python'
to the variable course
and output it.
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 7