2024年1月7日
摘要: 算数运算符 比较运算符 赋值运算符 复合赋值运算符 位运算符 & | ~ ^ 逻辑运算符 and、not、or 成员运算符 "in" 身份运算符 "is" 阅读全文
posted @ 2024-01-07 10:04 HelloJacker 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 包括:数字、字符串、列表、元组、字典以及集合 1. 数字 int型 long型(python3没有) float型 bool型 complex型 2. 字符串str str = 'Runoob' print (str[2:5]) # 输出从第三个开始到第五个的字符 print (str[2:]) # 阅读全文
posted @ 2024-01-07 09:40 HelloJacker 阅读(2) 评论(0) 推荐(0) 编辑