python 学习笔记

>>> 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.

------------------------------------------------------------------------------------

>>> 'hh'
'hh'

>>> "hh"
'hh'

>>> "'hh'"
"'hh'"

>>> '"hh"'
'"hh"'
>>> "\"hh\""
'"hh"'

>>> "\'hh\'"
"'hh'"

>>> print('1','2','3',sep='*')
1*2*3
>>> print('1','2','3',sep='*',end='!')
1*2*3!

==============================================

上一篇:五种方式让你在java中读取properties文件内容不再是难题


下一篇:Centos系统查看CPU有关信息