美文网首页
Day02 - 2018-04-03

Day02 - 2018-04-03

作者: 谁共我醉明月 | 来源:发表于2018-04-05 18:44 被阅读0次

    python中数字和字符串不能直接运算

    如 0 + '5'  #unsupported operand type(s) for +: 'int' and 'str'

    '0' + 5 #Can't convert 'int' object to str implicitly

    若要运算,需要使用函数转换类型 int()、float()、str()....

    方法与函数

    方法是特定对象已定义好的函数,他把该对象作为第一个参数处理。

    list的索引有负值索引,-1表示list倒数第一个元素

    list和str都可以切片 [:5]取前5个,[1:2]取第2个

    list是有序可变的

    str是有序不可变的

    相关文章

      网友评论

          本文标题:Day02 - 2018-04-03

          本文链接:https://www.haomeiwen.com/subject/ilxqhftx.html