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

Conteúdo do Curso

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

book
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
question mark

How many lines will be output after the code execution?

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 4

Pergunte à IA

expand
ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

course content

Conteúdo do Curso

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

book
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
question mark

How many lines will be output after the code execution?

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 4
Sentimos muito que algo saiu errado. O que aconteceu?
some-alt