4
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の文法 - 文字列操作

Last updated at Posted at 2016-06-01
  • 初めてのPython。わからないことをわかったベースで追記していきます。

文字列結合

# 間を「+」で連結
message = 'Hello' + ' ' + 'world'

# スペース空けて並べるでも良いらしい。(可読性ぇ…。)
message = 'Hello' ' ' 'world'

数値を文字列に変換

  • そのまま「+」で文字列と結合するとTypeErrorが発生。数値はstr()で変換する。

# print('test' + 123) # TypeError: Can't convert 'int' object to str implicitly

print('test' + str(123))
4
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
4
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?