python内建函数 build-in function
以下是内建函数列表:
python内建函数python print字符串连接注意事项:
连接的字符串必须对字符串类型进行转换,比如:
print “your age is ”+10+“!” #会提示字符串无法和整数类型连接
字符串连接错误提示改成这样就可以了:
print "your age is "+str(10)+"!"
正确的输出结果python内建函数 build-in function
连接的字符串必须对字符串类型进行转换,比如:
print “your age is ”+10+“!” #会提示字符串无法和整数类型连接
字符串连接错误提示改成这样就可以了:
print "your age is "+str(10)+"!"
正确的输出结果本文标题:2018-10-06 了解python,从基础学起之内建函数
本文链接:https://www.haomeiwen.com/subject/dtjkaftx.html
网友评论