大家好!
我是小黄,很高兴又跟大家见面啦 !
拒绝水文,从我做起 !!!!
今天更新的是:
创建时间:2021年2月10日
软件: Python 3 、Pycharm
在 Python 3 中,可以用中文作为变量名,非 ASCII 标识符也是允许的了。
注:
- 变量名只能包含字母、数字和下划线。变量名可以字母或下划线打头,但不能以数字打头。
例如,可将变量命名为message_1,但不能将其命名为1_message。- 变量名不能包含空格,但可使用下划线来分隔其中的单词。
例如,变量名greeting_message 可行,但变量名greeting message会引发错误。- 不要将Python关键字和函数名用作变量名,即不要使用Python保留用于特殊用途的单词。
- 变量名应既简短又具有描述性。
例如, name比n好, student_name比s_n好, name_length
比length_of_persons_name好。- 慎用小写字母l和大写字母O,因为它们可能被人错看成数字1和0。
要创建良好的变量名,需要经过一定的实践,在程序复杂而有趣时尤其如此。随着你编写的程序越来越多,并开始阅读别人编写的代码,将越来越善于创建有意义的变量名。
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert',
'break', 'class', 'continue', 'def', 'del', 'elif',
'else', 'except', 'finally', 'for', 'from', 'global',
'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not',
'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
#
表示注释,作用于整行。# 这是一个注释
print("hello world !") # 这是第二个注释
# print("hello world !") 这是第三个注释
- 执行上面代码输出结果为:
hello world !
''' '''
或者 """ """
表示区间注释,在三引号之间的所有内容被注释'''
这是多行注释,用三个单引号。
这是多行注释,用三个单引号。
这是多行注释,用三个单引号。
'''
print("hello world !")
# hello world !
'''
这是多行注释,用三个单引号。
这是多行注释,用三个单引号。
这是多行注释,用三个单引号。
'''
print("hello world !")
# hello world !
- 执行上面代码输出结果为:
hello world !
hello world !
if True:
print ("True")
else:
print ("False")
if True:
print ("Answer")
print ("True")
else:
print ("Answer")
print ("False") # 缩进不一致,会导致运行错误
"""
1. 想要换行的位置直接 + 回车
2. 想要换行的位置添加反斜杠 \
"""
print("https://www.bilibili.com/video/BV1Gt4y1z7Ne?spm_id_from=333.851.b_7265706f7274466972737432.10")
# 第一种 直接回车
print("https://www.bilibili.com/video/"
"BV1Gt4y1z7Ne?spm_id_from=333.851.b_7265706"
"f7274466972737432.10")
# 第二种 添加反斜杠 \
print("https://www.bilibili.com/v\
ideo/BV1Gt4y1z7Ne?spm_id_from=333.851.b_72657\
06f7274466972737432.10")
total = ['item_one', 'item_two', 'item_three',
'item_four', 'item_five']
空行与代码缩进不同,空行并不是Python语法的一部分。
书写时不插入空行,Python解释器运行也不会出错。空行的作用在于分隔两段不同功能或含义的代码,便于日后代码的维护或重构。记住:空行也是程序代码的一部分。
input("\n\n按下 enter 键后退出。")
语句之间使用分号( ; )分割
,以下是一个简单的实例:num1 = 10 ;num2 = 10; num3 = num1+num2;print(num3)
像if、while、def和class这样的复合语句,首行以关键字开始,以冒号( : )结束,该行之后的一行或多行代码构成代码组。
score = int(input("请输入考试成绩:"))
if score >= 90 and score <= 100:
print("A")
elif score >= 80:
print("B")
elif score >= 70:
print("C")
elif score >= 60:
print("D")
elif score < 60:
print("E")
else:
print("输入的分数有误")
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
将对象以字符串表示的方式格式化输出到流文件对象file里。其中所有非关键字参数都按str()
方式进行转换为字符串输出;
关键字参数sep
是实现分隔符,比如多个参数输出时想要输出中间的分隔字符;
关键字参数end
是输出结束时的字符,默认是换行符 \n ;
关键字参数 file
是定义流输出的文件,可以是标准的系统输出 sys.stdout
,也可以重定义为别的文件;
关键字参数flush
是立即把内容输出到流文件,不作缓存。
x="a"
y="b"
# 换行输出
print( x )
print( y )
print('---------')
# 不换行输出
print( x, end=" " )
print( y, end=" " )
print()
# 没有参数时,每次输出后都会换行:
shoplist = ['apple', 'mango', 'carrot', 'banana']
print("This is printed without 'end'and 'sep'.")
for item in shoplist:
print(item)
# This is printed without 'end'and 'sep'.
# apple
# mango
# carrot
# banana
# 每次输出结束都用 end 设置的参数 & 结尾,并没有默认换行:
shoplist = ['apple', 'mango', 'carrot', 'banana']
print("This is printed with 'end='&''.")
for item in shoplist:
print(item, end='&')
print('hello world')
# This is printed with 'end='&''.
# apple&mango&carrot&banana&hello world
# item 值与 'another string' 两个值之间用 sep 设置的参数 & 分割。由于 end 参数没有设置,因此默认是输出解释后换行,即 end 参数的默认值为 \n 。
shoplist = ['apple', 'mango', 'carrot', 'banana']
print("This is printed with 'sep='&''.")
for item in shoplist:
print(item, 'another string', sep='&')
# This is printed with 'sep='&''.
# apple&another string
# mango&another string
# carrot&another string
# banana&another string
>>> help("print")
Help on built-in function print in module builtins:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.
import module_name(模块名称)
from module_name import function_name
from module_name import function_0, function_1, function_2
from module_name(模块名称) import *
# 导入整个模块:
import pizza
pizza.make_pizza(16, 'pepperoni')
pizza.make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')
# 在import语句中显式地导入了函数
# make_pizza(),因此调用它时只需指定其名称。
from pizza import make_pizza
make_pizza(16, 'pepperoni')
make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')
# 导入模块中的所有函数
from pizza import *
make_pizza(16, 'pepperoni')
make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')
各位路过的朋友,如果觉得可以学到些什么的话,点个赞 再走吧,欢迎各位路过的大佬评论,指正错误,也欢迎有问题的小伙伴评论留言,私信。
每个小伙伴的关注都是本人更新博客的动力!!!
请微信搜索【 在下小黄 】文章更新将在第一时间阅读 !
把握现在 ,展望未来 ,加油 !
由于水平有限 ,写的难免会有些不足之处 ,恳请各位大佬不吝赐教 !