上一页 1 ··· 324 325 326 327 328 329 330 331 332 ··· 375 下一页
摘要: 1、 >>> a = "g\to\to\tg" >>> a 'g\to\to\tg' >>> a.expandtabs() 'g o o g' >>> 阅读全文
posted @ 2021-02-25 09:52 小鲨鱼2018 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 1、 >>> a = "good" >>> a 'good' >>> a.startswith("g") ## 判断字符串是否以g开头 True >>> a.startswith("o") ## 判断是否以o开头 False >>> a.startswith("d") False >>> a.end 阅读全文
posted @ 2021-02-25 09:48 小鲨鱼2018 阅读(1473) 评论(0) 推荐(0) 编辑
摘要: 1、 >>> a = "good" >>> a 'good' >>> a.count("g") ## 统计"g"出现的次数 1 >>> a.count("o") ## 统计"o"出现的次数 2 >>> a.count("d") ## 统计d出现的次数 1 >>> a.count("go") ## 统 阅读全文
posted @ 2021-02-25 09:36 小鲨鱼2018 阅读(13083) 评论(0) 推荐(0) 编辑
摘要: >>> a = "good" ##测试字符串 >>> a 'good' >>> type(a) <class 'str'> >>> a.center(1) ## 指定宽度1 'good' >>> a.center(10) ## 指定宽度10,默认使用空格填充 ' good ' >>> a.cente 阅读全文
posted @ 2021-02-25 09:16 小鲨鱼2018 阅读(1459) 评论(0) 推荐(0) 编辑
摘要: 1、 >>> a = "gooD" ##测试字符串 >>> a.lower() ##全部变为小写 'good' >>> a.upper() ## 全部变为大写 'GOOD' >>> a.casefold() ## 全部变为小写 'good' >>> a.capitalize() ## 首字母大写 ' 阅读全文
posted @ 2021-02-25 09:07 小鲨鱼2018 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 1、 >>> a = ("aaa","bbb","ccc","ddd","eee","fff") >>> a[:2] + a[3:] ## 删除元素ccc ('aaa', 'bbb', 'ddd', 'eee', 'fff') >>> a[:2] + a[4:] ## 删除元素ccc和ddd ('a 阅读全文
posted @ 2021-02-25 08:42 小鲨鱼2018 阅读(1771) 评论(0) 推荐(0) 编辑
摘要: 1、 >>> a = ("aaa","bbb","ccc","ddd","eee") >>> type(a) <class 'tuple'> >>> a[:2] + ("xxx",) + a[2:] ('aaa', 'bbb', 'xxx', 'ccc', 'ddd', 'eee') >> 阅读全文
posted @ 2021-02-25 08:27 小鲨鱼2018 阅读(18232) 评论(0) 推荐(0) 编辑
摘要: 1、 >>> a = ("aaa","bbb","ccc","ddd","eee","fff") >>> type(a) <class 'tuple'> >>> id(a) 1360669254176 >>> a[2] = "xxx" Traceback (most recent call last 阅读全文
posted @ 2021-02-24 22:54 小鲨鱼2018 阅读(2292) 评论(0) 推荐(0) 编辑
摘要: >>> a = ["aaa","bbb","ccc","ddd"] >>> a[1] = "xxx" ## 修改第二个元素 >>> a ['aaa', 'xxx', 'ccc', 'ddd'] >>> a[2:4] = ["mmm","nnn"] ## 修改第三和第四个元素 >>> a ['aaa 阅读全文
posted @ 2021-02-24 22:13 小鲨鱼2018 阅读(4469) 评论(0) 推荐(0) 编辑
摘要: 1、 >>> a = 100 >>> b = 200 >>> print(a,b) 100 200 >>> print("the score is:",a) the score is: 100 >>> print(f"the score is:{a}") the score is:100 阅读全文
posted @ 2021-02-24 22:04 小鲨鱼2018 阅读(332) 评论(0) 推荐(0) 编辑
上一页 1 ··· 324 325 326 327 328 329 330 331 332 ··· 375 下一页