0
1

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 3 years have passed since last update.

python 関数②

Posted at

###定型文に任意の文字列を差し込む処理
### formatメソッド
  文字列.format(引数,引数,...)

 ex)>>>a='{}は{}と同じ意味だ'
  >>>a.format('すぐに','ただちに')
  'すぐにはただちにと同じ意味だ'



  文字列.format(引数0、引数1,...)
  番号をつけることで同じ値を何度も表示することができるようになる
  
 ex)>>>a='{0}は{1}と同じ意味だ。{0}と{1}は{2}とも同じ意味である'
  >>>a.format('すぐに','ただちに','すみやかに')
  'すぐにはただちにと同じ意味だ。すぐにとただちにはすみやかにとも同じ意味である'


### replaceメソッド
 文字列の中から旧文字列を探し出して、新文字列に置き換えた文字列を作り、返す
     文字列.replace(旧文字列,新文字列)

 ex)>>>guest='斎藤、鈴木、田中'
  >>>guest.replace(',',様、')**
    斎藤様、鈴木様、田中様

    文字列.replace(旧文字列,新文字列,回数)
    指定した回数だけ、文字列の中から旧文字列を探し出して、新文字列に置き換えた文字列を作り、返す
  
  ex)>>>guest='斎藤、鈴木、田中'
  >>>guest.replace(',',様、',1)**
    斎藤様、鈴木、田中

  

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?