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)
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 2. Capítulo 4
Pergunte à IA
Pergunte à IA
Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo
Awesome!
Completion rate improved to 2.7
Multiline Strings
Deslize para mostrar o menu
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)
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 2. Capítulo 4