1. 程式人生 > >Python 類編碼風格

Python 類編碼風格

collect 導入 and imp sin 劃線 mst 三引號 模板

1.命名

  • 類名:(1)單詞首字母均大寫 (2)不使用下劃線
  • 實例名+模塊名:(1)小寫格式 (2)下劃線分隔單詞

2.文檔字符串

  • 三引號:“““ ”””
  • 每個類定義後面需要包含一個文檔字符串,描述類的功能
  • 每個模塊裏需要包含一個文檔字符串,對其中的類功能進行描述

3.import語句

  • 導入標準庫模板的import語句 | 中間空一行 | 導入自定義的模板的import語句

4.示例

import random
import collections

import car
import icecreamstand

class IceCeamStand():
    """ the using of class"""
    def __init__(self,……):
         print(……)  
       
    def describe_info():
         print(……)    


class Car():
   """the using of class"""
    def __init__(self,……):
         print(……)  
       
    def describe_info():
         print(……)    

  

Python 類編碼風格