「Python」randint()関数でリストの値をランダムに表示する
構文
randint(a,b)
引数をa以上b以下
サンプルコード
# coding: utf-8 import random cft = ["A001","B002","C003","D005","E006"] n = random.randint(0,4) print(cft[n])
Coding Changes the World
構文
randint(a,b)
引数をa以上b以下
サンプルコード
# coding: utf-8 import random cft = ["A001","B002","C003","D005","E006"] n = random.randint(0,4) print(cft[n])