Advertisement
Guest User

Untitled

a guest
Dec 20th, 2011
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. #Function
  2. def foo(lis):
  3.     #Does something
  4.     return something
  5.  
  6. #Get input
  7. lis = []
  8. N = int(raw_input())
  9. for x in xrange(N):
  10.     i = raw_input()
  11.     lis.append(i)
  12.  
  13. #Print Output
  14. print foo(lis)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement