fork download
  1. NOME = ['CARLOS','JOAO','PEDRO']
  2. IDADE = ['30','25','22']
  3. rows = len(NOME)
  4. for i in range(rows):
  5. print(str(NOME[i]+":"+IDADE[i]))
Success #stdin #stdout 0.02s 9252KB
stdin
Standard input is empty
stdout
CARLOS:30
JOAO:25
PEDRO:22