About 50 results
Open links in new tab
  1. Common coding style for Python? - Stack Overflow

    May 12, 2010 · I'm pretty new to Python, and I want to develop my first serious open source project. I want to ask what is the common coding style for python projects. I'll put also what I'm doing right …

  2. What is the naming convention in Python for variables and functions ...

    The coding style is usually part of an organization's internal policy/convention standards, but I think in general, the all_lower_case_underscore_separator style (also called snake_case) is most common …

  3. coding style - Single quotes vs. double quotes in Python - Stack Overflow

    Sep 11, 2008 · I did a quick check using Google Code Search and found that triple double quotes in Python are about 10x as popular as triple single quotes -- 1.3M vs 131K occurrences in the code …

  4. coding style - What's the correct way to sort Python `import x` and ...

    Dec 24, 2013 · The python style guide suggests to group imports like this: Imports should be grouped in the following order: standard library imports related third party imports local application/li...

  5. coding style - Conventions on creating constants in Python - Stack …

    Aug 16, 2011 · To that end, I am writing a small database adapter using Python. I decided to first write a base class that outlines the functionality I need, and then implement it using classes that inherit from …

  6. pylint - Change default python coding style - Stack Overflow

    Jun 14, 2016 · Change default python coding style Asked 14 years, 11 months ago Modified 2 years, 10 months ago Viewed 18k times

  7. Python import coding style - Stack Overflow

    May 26, 2017 · Python import coding style Asked 17 years ago Modified 7 years, 9 months ago Viewed 34k times

  8. coding style - Importing modules in Python - Stack Overflow

    I am new to Python as I want to expand skills that I learned using R. In R I tend to load a bunch of libraries, sometimes resulting in function name conflicts. What is best practice in Python. I h...

  9. coding style - More elegant way to write if else in python - Stack …

    Jan 23, 2013 · More elegant way to write if else in python Asked 13 years, 1 month ago Modified 13 years ago Viewed 5k times

  10. coding style - What are the most common Python docstring formats ...

    I have seen a few different styles of writing docstrings in Python, what are the most popular styles?