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

Kursusindhold

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

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 2. Kapitel 4

Spørg AI

expand
ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

course content

Kursusindhold

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

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 2. Kapitel 4
Vi beklager, at noget gik galt. Hvad skete der?
some-alt