2
1

More than 1 year has passed since last update.

アルファベット順で指定のアルファベットを「何番目」かを出力する

Posted at

何度かアルファベットの取り扱いがあったので、メモとして残します。

1.アルファベットを変数に代入

import string

alphabets = string.ascii_uppercase
alphabets
# ABCDEFGHIJKLMNOPQRSTUVWXYZ

2.str.index()でインデックス番号を取得

alphabets.index("D") + 1
# 4

3.typeを調べる

type(alphabets)
# str
2
1
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
2
1