A = list(input()) A = [int(a) for a in A]
これにより、
111
のようなものを[1, 1, 1]として取得することができます
文字列でいい場合は、
A = list(input())
だけで十分です
Go to list of users who liked
More than 3 years have passed since last update.
A = list(input()) A = [int(a) for a in A]
これにより、
111
のようなものを[1, 1, 1]として取得することができます
文字列でいい場合は、
A = list(input())
だけで十分です
Register as a new user and use Qiita more conveniently
Go to list of users who liked