Can't drop files on python scripts in a fresh installation of Windows 10 and Python 3.7

2018-09-02 Thread Random832
Python itself runs fine, but when I try to drop a file on a script it just doesn't work. If I try to regsvr32 the shell extension, it says: The module "c:\windows\pyshellext.amd64.dll" failed to load. There was no indication of any problem until this. Apparently it is linked against "VCRUNTIME

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): """ >>> a2i("A") 0 >>> a2i("Z