copipe Python
copipe Python | printで改行しない。
概要
printでendオプションを指定すると、改行せずに表示することができる。
コード
print("aaa", end="") print("bbb")
結果
aaabbb