len()とrandint()についてメモ。
#(1)len()
リスト型を引数にすると、その要素を取得できる。
.py
list = [0,1,2,3,4,5]
print(len(list))
#6が出力される
#(2)randint()
乱数を発生させる。
.py
import random
r = random.randint(1,100)
print(r)
#1から100までのうちの乱数を生成
Go to list of users who liked
More than 3 years have passed since last update.
len()とrandint()についてメモ。
#(1)len()
リスト型を引数にすると、その要素を取得できる。
list = [0,1,2,3,4,5]
print(len(list))
#6が出力される
#(2)randint()
乱数を発生させる。
import random
r = random.randint(1,100)
print(r)
#1から100までのうちの乱数を生成
Register as a new user and use Qiita more conveniently
Go to list of users who liked