Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Multiline Strings | Data Types
Introduction to Data Analysis in Python
course content

Зміст курсу

Introduction to Data Analysis in Python

Introduction to Data Analysis in Python

1. Basics
2. Data Types
3. Control Flow
4. Functions and Modules
5. Introduction to NumPy

Multiline Strings

If you need to store more than 1 line of text within one variable, you will need to enclose it with a pair of Triple quotes.

Another option is to use the newline characters (\n). In this case, you will not need to use pair of Triple quotes.

123456789
string_1 = ''' Strings are easy ''' # or string_2 = 'Strings\nare easy' print(string_1) print(string_2)
copy

How many lines will be output after the code execution?

Виберіть правильну відповідь

Все було зрозуміло?

Секція 2. Розділ 4
We're sorry to hear that something went wrong. What happened?
some-alt