Skip to content

Instantly share code, notes, and snippets.

@ale64bit
Created December 15, 2015 11:14
Show Gist options
  • Save ale64bit/0a1f147e6200759d565e to your computer and use it in GitHub Desktop.
Save ale64bit/0a1f147e6200759d565e to your computer and use it in GitHub Desktop.
n = int(raw_input('')) # read how many input strings follow next
for i in range(0, n): # remember, the interval [a, b] is from a to b-1
s = raw_input('') # read current line
print s # do something with it. It can be printing it, or something more complex.
# Here, you can do what the exercise requires and then print it out.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment