欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python | 变量与数据 | 变量命名规则

程序员文章站 2022-04-27 08:36:27
...
# coding: utf-8

# 驼峰命名法,一般采用大驼峰
# 用于类与模块中
class Person(object):
    pass

# 下划线命名法
# 用于变量,函数,模块中
apple_price = 18

def say_hello():
    pass
相关标签: python