My bad, I messed up the indentations.
Indent everything below:
stations = csv.reader(f)
and both examples should work.
This is great and makes sense...
now time to play with it ... progress!
print ("{0}".format(*row)+" is the callsign given to {1}".format(*row)+" which is in the {2}".format(*row)+" Area")
Not like this:
Like this:
print ("{0} is the callsign given to {1} which is in the {2} Area".format(*row))
@ObiWomKenobi started
London Fixed Gear and Single-Speed is a community of predominantly fixed gear and single-speed cyclists in and around London, UK.
This site is supported almost exclusively by donations. Please consider donating a small amount regularly.
My bad, I messed up the indentations.
Indent everything below:
and both examples should work.