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.
123456789string_1 = ''' Strings are easy ''' # or string_2 = 'Strings\nare easy' print(string_1) print(string_2)
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 2. Hoofdstuk 4
Vraag AI
Vraag AI
Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.
Awesome!
Completion rate improved to 2.7
Multiline Strings
Veeg om het menu te tonen
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.
123456789string_1 = ''' Strings are easy ''' # or string_2 = 'Strings\nare easy' print(string_1) print(string_2)
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 2. Hoofdstuk 4