Python基础语法一(转载)
2021/12/5 1:18:09
本文主要是介绍Python基础语法一(转载),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
运算符:
- 算数运算符 + - * / %
- 比较运算符 > >= < <= == !=
- 赋值 =
- 逻辑运算符 and or not
- 成员运算 in、not in
- 身份运算 is 、is not
格式化:
利用百分号格式化:
s1 = "I love python %d 遍" print(s1%(1000)) s1 = "I love python %d 遍 and %d" print(s1%(100, 1000))
format函数格式化字符串:
# format例子 s1 = "I love python {} 遍" print(s1.format(100) s1 = "I love python {} 遍 and {} 遍" print(s1.format(100, 1000) s1 = "I love python {0} 遍 and {0} 遍 and {1} 遍 and {1} 遍" print(s1.format(100, 1000)
变量类型:
- 数字
- 字符串
- 列表
- 元组
- 字典
- 集合
数字类型
# 数字类型 (整型、浮点类型、布尔类型) varn = 100 varn2 = 510.1 print(varn, type(varn)) print(varn2, type(varn2))
字符串str
# 字符串类型 a = '你好' res = type(a) print(a, res) # 大字符串 s = """ aaaaa bbbbb ccccc """ # 字符串中的引号可以相互嵌套,但不能嵌套自己 s1 = """ aaa'a'a bbb"bb" cc'''ccc'''c """ # 转义字符 s = 'abc\ndef' print(s) s = r'abc\ndef' print(s)
集合set
- 数学集合的概念,内部内容不允许重复
- 常用来进行排重操作
- 集合可以直接操作:交差并补
# 集合的定义 s = set() print(s) s = {3, 19, 91, 3, 9, 19, 10} print(s) # 集合的去重 li = [2, 3, 1, 2, 3, 22, 11] s = set(li) print(s) # 添加内容 删除内容 s.add(300) print(s) s.remove(300) print(s) # 交差并补 s1 = {1, 2, 3, 4} s2 = {3, 4, 5, 6, 7} s3 = s1.intersection(s2) s3 = s1.difference(s2) s3 = s1.union(s2) s3 = s1.symmetric_difference(s2)
三大结构:
- 顺序
- 分支: if语句
- 循环:for循环、while循环
这篇关于Python基础语法一(转载)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型