Python 知识点 记录 日积月累

时间:2022-10-10 00:10:37

输出序列以及倒序输出

print range(1,10)
print range(1,10)[::-1]
#output:
#[1, 2, 3, 4, 5, 6, 7, 8, 9]
#[9, 8, 7, 6, 5, 4, 3, 2, 1]

加 r 不转义

print "\\savc\nff"
print r"\\savc\nff"
#output:
#\savc
#ff
#\\savc\nff

格式化 对其输出 log 信息

print 'succeed'.center(20,'=')
print 'fail'.center(20,'=')
# output
# ======succeed=======
# ========fail========

单引号和双引号都可以表示字符串

print 'hello world'
print "hello world"

都是输出
hello world

这点要注意和java区分,因为java单引号表示字符char,双引号表示字符串str

pass的使用

如果想定义一个空函数,可以这样:

def staCorrect():
pass

如果把上面的pass去掉是会报错的。