首页 > 编程语言 > 详细

python中注意事项(更新)

时间:2020-08-03 23:53:16      阅读:129      评论:0      收藏:0      [点我收藏+]

1.print(a,b),print打印多个变量,默认中间会有个空格作为分隔符,默认以换行符结尾

Docstring:
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.
Type:      builtin_function_or_method

2.range(1,10),左闭右开,生成的结果为1-9 

3.input()获得的结果是字符串,如果要和数字比较,记得类型转换

python中注意事项(更新)

原文:https://www.cnblogs.com/yunxiaofei/p/13430502.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!