Re: how to get a value from CSV specific cell (A7) thanks

2018-09-02 Thread alon . najman
On Saturday, September 1, 2018 at 9:19:29 PM UTC+3, alon@gmail.com wrote: > how to get a value from CSV specific cell (A7) thanks thanks all ! -- https://mail.python.org/mailman/listinfo/python-list

Re: how to get a value from CSV specific cell (A7) thanks

2018-09-02 Thread Peter Otten
alon.naj...@gmail.com wrote: > how to get a value from CSV specific cell (A7) thanks $ cat csv_sheet.py #!/usr/bin/python3 import re import csv import string LOOKUP = {c: i for i, c in enumerate(string.ascii_uppercase, 1)} def a2i(s): """ >>>

Re: how to get a value from CSV specific cell (A7) thanks

2018-09-01 Thread George Fischhof
HI, CSV has no cells, but you can use csv module from standard lib https://docs.python.org/3/library/csv.html and you can get 7th data from the first row (as A means the first row) __george__ ezt írta (időpont: 2018. szept. 1., Szo, 20:24): > how to get a value from CSV specific cell

how to get a value from CSV specific cell (A7) thanks

2018-09-01 Thread alon . najman
how to get a value from CSV specific cell (A7) thanks -- https://mail.python.org/mailman/listinfo/python-list