摘要: Python访问字符串 1、使用索引的方法访问字符串中的某一字符: >>> a = 'hello world' >>> a[3] 'l' 2、使用切片方法访问字符串中的子字符串: >>> a = 'hello world' >>> a[:4] 'hell' >>> a[:4] = 'aaa' Tra 阅读全文
posted @ 2022-02-17 15:47 hook_what 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 不同数值类型间的转换 数字类型中有三种数值类型:int、float、complex(复数); 在数值类型间转换,直接使用数值类型名作为函数名。 >>> int(3.8) # int函数是直接截取整数部分 3 >>> float(12) 12.0 >>> complex(5) (5+0j) >>> c 阅读全文
posted @ 2022-02-17 10:28 hook_what 阅读(137) 评论(0) 推荐(0) 编辑