Category: python

python Technology

Python Programming tidbits

The differences in tuple, dictionary, set and list List Comprehension Using slicing in matrix selection The differences in tuple, dictionary, set and list tuple : immutable , i.e. user cannot change the content of the tuple dictionary : accessible by key-value pair list : list of items set : non repeatable list Code Sample List […]

python Technology tensorflow

tensorflow with Pycharm

I was trying to execute the sample code from Google tensorflow quick start for beginner on my Mac and I run into the ssl.SSLCertVerificationError. My Pycharm was setup to run all code in venv with Python 3.8 and the necessary tensorflow library setup. Error Message: ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local […]

Back To Top