Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Newline | Strings
Introduction to Python | Mobile-Friendly

Newline

メニューを表示するにはスワイプしてください

In the previous chapter, you called on the print() function two times since you wanted to output two lines of text. Does this mean that we need a separate function for each line that we want to output? Surely not.

There are many special symbols in character encoding. One of them represents a line's ending and a new one's start. This symbol is \n. For example, let's show how to output two lines with one print() function.

12
# Output two lines with one print() function print("Section: 3\nChapter: 3")
question mark

How many lines will be outputted after the code execution?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3. 章 4

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

Newline

In the previous chapter, you called on the print() function two times since you wanted to output two lines of text. Does this mean that we need a separate function for each line that we want to output? Surely not.

There are many special symbols in character encoding. One of them represents a line's ending and a new one's start. This symbol is \n. For example, let's show how to output two lines with one print() function.

12
# Output two lines with one print() function print("Section: 3\nChapter: 3")
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3. 章 4
some-alt