fork download
  1. 리스트 = ['dog', 'cat', 'parrot']
  2. for 수량 in 리스트:
  3. print(수량, len(수량))
  4. # your code goes here
Success #stdin #stdout 0.07s 14060KB
stdin
Standard input is empty
stdout
dog 3
cat 3
parrot 6