• 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:

    print ("{0}".format(*row)+" is the callsign given to {1}".format(*row)+" which is in the {2}".format(*row)+" Area")
    

    Like this:

    print ("{0} is the callsign given to {1}  which is in the {2}  Area".format(*row))
    
About