About 9,170,000 results
Open links in new tab
  1. Newest 'python' Questions - Stack Overflow

    4 days ago · Python is an interpreted, interactive, object-oriented (using classes), dynamic and strongly typed programming language that is used for a wide range of applications.

  2. Highest scored 'python' questions - Stack Overflow

    Oct 23, 2008 · Python is an interpreted, interactive, object-oriented (using classes), dynamic and strongly typed programming language that is used for a wide range of applications.

  3. slice - How slicing in Python works - Stack Overflow

    Python slicing is a computationally fast way to methodically access parts of your data. In my opinion, to be even an intermediate Python programmer, it's one aspect of the language that it …

  4. 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?

  5. How to create a simple quiz in python with multiple topics?

    Nov 7, 2014 · First of all your code is (no offence) all whack, one your completely ignoring the : s, don't use the normal input unless necessary or your in python 3. Also, please explain how your …

  6. What does the "at" (@) symbol do in Python? - Stack Overflow

    I also do not know what to search for as searching Python docs or Google does not return relevant results when the @ symbol is included. If you want to have a rather complete view of …

  7. python - Named colors in matplotlib - Stack Overflow

    What named colors are available in matplotlib for use in plots? I can find a list on the matplotlib documentation that claims that these are the only names: b: blue g: green r: red c: cyan m: mag...

  8. Manually raising (throwing) an exception in Python

    How do I raise an exception in Python so that it can later be caught via an except block?

  9. Generating questions from text (NLP) - Stack Overflow

    Jul 25, 2011 · Based on my personal experience, I am 95% successful in generating Questions and Answers in my Internship for training purposes. I have a sample web user interface to …

  10. python - How can I find the index for a given item in a list? - Stack ...

    It just uses the Python function array.index() and with a simple Try / Except, it returns the position of the record if it is found in the list and returns -1 if it is not found in the list (like in JavaScript …