Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. for row in rows:
  2. id = str(row[0])
  3. name = str(row[1])
  4. freq = str(row[2])
  5. mode = str(row[3])
  6. utc = str(row[4])
  7. date = str(row[5])
  8. contact = str(row[6])
  9. notes = str(row[7])
  10. print("ID: ", id)
  11. print("Name: ", name)
  12. print("Freq: ", freq)
  13. print("Mode: ", mode)
  14. print("UTC: ", utc)
  15. print("Date: ", date)
  16. print("Contact: ", contact)
  17. print("Notes: ", notes)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement