About 609,000 results
Open links in new tab
  1. Using 'or' in an 'if' statement (Python) - Stack Overflow

    Using 'or' in an 'if' statement (Python) [duplicate] Asked 7 years, 10 months ago Modified 1 month ago Viewed 160k times

  2. How can I access environment variables in Python?

    How can I get the value of an environment variable in Python?

  3. How can I find where Python is installed on Windows?

    Mar 15, 2009 · I want to find out my Python installation path on Windows. For example: C:\\Python25 How can I find where Python is installed?

  4. python - Iterating over a dictionary using a 'for' loop, getting keys ...

    Mar 16, 2017 · In Python 3, the iteration has to be over an explicit copy of the keys (otherwise it throws a RuntimeError) because my_dict.keys() returns a view of the dictionary keys, so any change to …

  5. python - How do I list all files of a directory? - Stack Overflow

    Jul 9, 2010 · How can I list all files of a directory in Python and add them to a list?

  6. python - SSL: CERTIFICATE_VERIFY_FAILED with Python3 - Stack Overflow

    Sep 2, 2017 · Go to the folder where Python is installed, e.g., in my case (Mac OS) it is installed in the Applications folder with the folder name 'Python 3.6'. Now double click on 'Install Certificates.command'.

  7. python - Importing files from different folder - Stack Overflow

    I have this folder structure: application ├── app │ └── folder │ └── file.py └── app2 └── some_folder └── some_file.py How can I import a function from file.py, from within som...

  8. python - Find the current directory and file's directory - Stack Overflow

    How do I determine: the current directory (where I was in the shell when I ran the Python script), and where the Python file I am executing is?

  9. python - How can I install cv2? - Stack Overflow

    Sep 11, 2019 · 32 My environment: Ubuntu 18.04 LTS (Bionic Beaver) (also tried on Ubuntu 19.04 (Disco Dingo)) I use/need Python 3 (3.6.8 installed). I need cv2, which is a model of OpenCV. I tried …

  10. python - How can I add new keys to a dictionary? - Stack Overflow

    How do I add a new key to an existing dictionary? It doesn't have an .add () method.