Advertisement
Welton

ListenvonListen

Aug 2nd, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #!/bin/python
  2. # -*- coding: utf-8 -*-
  3.  
  4. import os
  5. os.system("clear")
  6.  
  7. valor = input()
  8.  
  9. lista = []
  10. wert = []
  11.  
  12. for x in range(1,int(valor)+1):
  13.     valores = input()
  14.     a,b = valores.split()
  15.     wert.append([x,a,b])
  16.  
  17. lista.append(wert)
  18.  
  19. print(lista)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement