1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Python】print関数のendオプションの使い方

Last updated at Posted at 2019-10-14

#endオプションとは?

簡単に言うと、print関数の最後に付け足すものを指定するにために使う

print("りんご", "バナナ")
>> りんご バナナ

↓↓↓↓↓↓↓↓

print("りんご", "バナナ", end=" が好きです")
>> りんご バナナ が好きです

#end=""は、何を表しているのか?

print関数は、関数終了時に自動的に改行を実行されるようになっているのだが、これを実行させないために用いられる

print("りんご")  # 目には見えないが、ここで改行コードも実行されている
print("バナナ")
>> りんご
   バナナ

end= ""を指定することで、"何もしない"、を指定したことになり、改行されない

print("りんご", end="") # endで、""を指定すると、"何もしない"を表す
print("バナナ")
>> りんごバナナ

りんご、と、バナナ、の間に空白も含まれない
指定したい場合は、endオプションで指定する必要がある

print("りんご", end=" ")
print("バナナ")
>> りんご バナナ
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?