Table of Contents
回复内容:
Home Backend Development Python Tutorial Python 编程,应该养成哪些好的习惯?

Python 编程,应该养成哪些好的习惯?

Jun 06, 2016 pm 04:11 PM
bug

我以为编程习惯很重要的,一开始就养成这些习惯,不仅可以提高编程速度,还可以减少 bug 出现的概率。希望各位分享好的编程习惯。

回复内容:

有人提到要严格遵照PEP 8规定的Python Coding Style来写,要多读英文文档,多看看一些优秀的库(比如requests)

其实这一切的一切,用Jetbrain的 PyCharm IDE就好啦:
Python IDE & Django IDE for Web developers : JetBrains PyCharm

- 免费,全平台(Win、MacOS、Linux),为Python带来完整的IDE体验

- 体验不输同门的IntelliJ (IntelliJ是什么水平呢?对我来说,IntelliJ在写Java上面的体验是吊打Eclipse的)

- 自动提示Coding Style:函数之间空两行,4空格缩进,函数名称写法 etc,统统会提示你!比某个PEP8检查script来的更加方便

- 可以随意点击任何函数、某个lib,对所有python内置lib、和已经安装了的第三方lib都有效,可以迅速打开该第三方函数的实现,方便查看其文档&实现细节(这就不用手动去python lib目录下一个个去翻了,对于学习优秀的第三方lib特别有帮助)

- 包括有人提到的Unit Test,PyCharm也提供one-click生成test case

总之,我推荐刚入门Python的大家,尽早的使用PyCharm来开发,那感觉就如同一个经验丰富的大师,手把手盯着你编程 ^^ 1. 养成看英文文档、材料的习惯
2. 看完 requests 库作者写的这份 Python Guide: The Hitchhiker’s Guide to Python!
3. 按照这上面的做 虚拟环境、解包、列表推导、迭代器、生成器、装饰器、抽象基类、静态方法、类方法、 不光是上面一些大牛们说的那些基本的缩进,自动化测试之类的
更重要的还是写出Python的特色来。

PyConChina2014 杭州场 @施远敏 分享的主题
idiomatic.py —— 如何写一个具有高B格的Python代码

原文(墙外):
docs.google.com/present

译文(个人翻译):
转载: idiomatic.py

都是一些小的细节, 但是正是这些细节体现了Py的与众不同 > 每个公共函数有unit tests
> 公共函数和类的名称准确概括其目的
> 写docstring
> 不写代码内注释(inline comment)
> release代码里不用print
> 每个函数不超过10行(不包括docstring) 谨慎使用鸭子类型,对于作为函数参数传进来的对象(尤其是自定义的类的实例),使用之前最好用type/isinstance方法做一下类型检查,或者Python3的 Function Annotations 功能做一下注释。

这样既增加了代码的可读性,也使得IDE(比如Pycharm)更容易理解你的代码,提供更准确的错误提示,代码跳转和自动补全。 1,随时开着一个解释器待用。忘了api直接dir+help,忘了用法直接在解释器里面进行试验。
充分利用python强大的自省能力,不仅能让初学者尽快入门,对日后使用也很有帮助。

2,import大法好。遇到用python处理某一类比较通用且复杂的问题,先去搜一下有没有现成的轮子:安装包自带的有很多,github上也活跃着很多项目。

讲的虽然都不是具体的编程习惯,但都是我的切身体会。上面几点都是我喜欢python的原因。(^_^) (¬_¬)There should be one-- and preferably only one --obvious way to do it.
所以
良好习惯就是,在StackOverflow上搜索遇到的问题,然后把被采纳的答案背下来,以后遇到这种问题都用它。 最好先看完PEP8 code style再开始编码。不然老员工code reviews的时候看到新人奇葩的风格就想撕逼了哒 过来人告诉你,养成写测试代码的习惯绝对是一个聪明的选择。
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What does game bug mean? What does game bug mean? Feb 18, 2024 am 11:30 AM

What do game bugs mean? During the process of playing games, we often encounter some unexpected errors or problems, such as characters getting stuck, tasks being unable to continue, screen flickering, etc. These abnormal phenomena are called game bugs, that is, faults or errors in the game. In this article, we'll explore what game bugs mean and the impact they have on players and developers. Game bugs refer to errors that occur during the development or operation of the game, causing the game to fail to run normally or to behave unexpectedly. These errors may be due to

Apple iOS18 bug summary Apple iOS18 bug summary Jun 14, 2024 pm 01:48 PM

As Apple's WWDC conference 2024 came to a successful conclusion, not only macos15 was announced, but the update of Apple's new iOS18 system attracted the most attention. Although there are many new features, as the first version of Apple's iOS18, people inevitably wonder whether it is necessary to upgrade Apple. iOS18, what kind of bugs are there in the latest release of Apple iOS18? After real use evaluation, the following is a summary of Apple iOS18 bugs, let’s take a look. Currently, many iPhone users are rushing to upgrade to iOS18. However, various system bugs are making people uncomfortable. Some bloggers said that you should be cautious when upgrading to iOS18 because "there are so many bugs." The blogger said that if your iPhone is

What does system bagage mean? What does system bagage mean? Nov 09, 2022 pm 02:40 PM

System bagage refers to system bug; the original meaning of bug is "bug", and now it can be used to refer to vulnerabilities that exist on the computer. The reason is that there are flaws in the system security policy, and there is a danger that attackers can access without authorization; in a broad sense On the topic, bug can be used to describe loopholes or defects that appear in various fields.

Sorting out Win11 errors and issues Sorting out Win11 errors and issues Jan 13, 2024 pm 08:21 PM

Some people want to update win11, but they don’t know if there are many bugs in win11 and whether the update will cause problems. In fact, there are bugs in win11 now, but they have little impact on use. Are there many bugs in win11? Answer: There are still many bugs in win11. However, these bugs have little impact on daily use. If the user has high requirements for daily use, it is recommended to use it later. Summary of win11 bugs 1. Resource Manager 1. Sometimes memory overflow occurs, resulting in high memory usage of the Resource Manager. 2. This situation will cause the memory to occupy more than 70%, causing the computer to freeze or even crash. 2. Conflict and crash 1. Some applications are not compatible enough, causing conflicts with each other. 2. Although there are relatively few conflict procedures,

What is the life cycle of a bug? What is the life cycle of a bug? Nov 08, 2022 pm 02:17 PM

The life cycle of a BUG is the process from when a BUG is discovered to when the BUG is closed. The specific process is: 1. Discover the BUG, ​​that is, discover the loopholes or defects in the software program; 2. Submit the bug and try to describe the attributes and reproduction of the defect. Environment, type, level, priority and detailed reproduction steps, results and expectations, etc.; 3. Assign the bug, that is, assign the problem directly to the corresponding developer; 4. Analyze and confirm it as a defect; 5. Handle and fix the BUG; 6. Regression verification BUG; 7. Close BUG.

What does the Internet hot word bug mean? What does the Internet hot word bug mean? Jan 21, 2021 pm 02:15 PM

The Internet hot word bug refers to the loopholes that exist on computers. A vulnerability* (bug) is a flaw in the specific implementation of hardware, software, protocols, or system security policy, which allows an attacker to access or damage the system without authorization. Vulnerabilities may come from defects in the design of application software or operating systems or errors in coding. They may also come from design defects or unreasonable logic flows in the business interaction process.

One line of code to make your Python bug unique One line of code to make your Python bug unique Apr 14, 2023 am 09:16 AM

PrettyErrors is a tool that streamlines Python error messages. It is characterized by a very simple and friendly interface. Its most notable feature is that it supports color output on the terminal, annotates file stack traces, finds error messages, filters out redundant information, extracts key parts, and performs color annotation, thereby improving developer efficiency. Writing code itself is not easy, especially if a bug appears in tens of thousands of lines of code, and you will not be able to find the problem for a while. At this time, you must be very crazy and irritable. Especially when there is an error in the Python code, the screen is full of error messages, making it even more difficult to locate the error. Let’s first take a look at the traceback above. It only has one color and cannot be as high-level as the code.

What is the bug in the latest version of win10 1903 What is the bug in the latest version of win10 1903 Jan 07, 2024 pm 10:37 PM

After Microsoft updated the win101903 version, the new version not only fixed the bugs that appeared in the previous version, added and improved some functions, but also inevitably encountered the problems that existed in the new version. Most of them are bugs related to compatibility and stability, but fortunately they are not major problems. Let’s take a look at the specific content with the editor~ I hope it can help you. What is BUG 1903 in the latest version of win10? Microsoft announced that it has fixed three serious BUG1 in the Windows 10 2019 May update. The first is the audio problem with Dolby Atmos and home theater. Some devices may lose audio after installing Version 1903. It turns out that this audio BUG

See all articles