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