Skip to content

Python3 で連続したアルファベットを出力するサンプルスクリプト

Python3 で「連続したアルファベットを出力するサンプルスクリプト」をメモしておきます。

スクリプト

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python

def get_alphabets(count: int) -> str:
  alphabets = list(range(97, 123))
  alphabets.extend(list(range(65, 91)))
  return get_characters(alphabets, count)

def get_lower_alphabets(count: int) -> str:
  alphabets = list(range(97, 123))
  return get_characters(alphabets, count)

def get_upper_alphabets(count: int) -> str:
  alphabets = list(range(65, 91))
  return get_characters(alphabets, count)

def get_characters(alphabets: list, count: int) -> str:
  result = ''
  index = 0
  for i in range(0, count):
    result += chr(alphabets[index])
    index += 1
    if len(alphabets) <= index:
      index = 0
  return result

if __name__ == '__main__':
  print(get_lower_alphabets(30))
  print(get_upper_alphabets(30))
  print(get_alphabets(30))

実行例

1
2
3
4
# ./sample.py
abcdefghijklmnopqrstuvwxyzabcd
ABCDEFGHIJKLMNOPQRSTUVWXYZABCD
abcdefghijklmnopqrstuvwxyzABCD