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のいろいろな関数やメソッド

Last updated at Posted at 2019-08-26

#はじめに
未来電子テクノロジーでインターンをしている宮﨑です。
今回は、Pythonを学習していくうちに学んだ関数をいくつか書いてきます!
もし誤りがあれば修正するのでどんどん指摘してください。

#join
文字列や数値などを連結させます。


test = ['ab','c','de']
result = ''.join(test)
print(result)
# abcde が出力される

' 'の間に好きな文字を入れることによって、その文字で区切れます。

#map
リストなどのすべての要素に同じ演算を適用します。
使い方の一例として、数値と文字列を結合することもできます。

date = [2019, "", 8, "", 26, ""]

# map()を使ってすべての要素を文字列に変換
date = map(str, date)

#split
文字列をスペースや' , 'で区切ります。

test = orange,apple,banana
print(test.split(','))
# ['orange', 'apple', 'banana']

#まとめ

初心者なので、関数やメソッドは未知のものだらけです。
知らない関数に出会って調べてみると、世界が広がります。
見たことのない関数があったら、どんどん調べていきましょう。

#参考
join
https://www.sejuku.net/blog/41752
map
https://python.atelierkobato.com/map/
split
https://qiita.com/Morio/items/38701038ad098dd5dc3d

1
3
1

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?