网站首页 > 技术文章 正文
变量和数据类型
变量
在 Python 中,你不需要显式声明变量类型。变量名可以直接赋值。
x = 10
y = "Hello, World!"
z = 3.14
数据类型
数字:整数(int)、浮点数(float)、复数(complex)
字符串:单引号或双引号表示
列表:有序集合,可以包含不同类型的元素
元组:有序且不可变的集合
字典:键值对的集合
集合:无序且不重复的元素集合
布尔值:True 和 False
# 数字
a = 10 # int
b = 3.14 # float
c = 2 + 3j # complex
# 字符串
s = "Hello, World!"
# 列表
lst = [1, 2, 3, "four", 5.0]
# 元组
tup = (1, 2, 3, "four", 5.0)
# 字典
dic = {"name": "Alice", "age": 25}
# 集合
set_ = {1, 2, 3, 4, 5}
# 布尔值
is_true = True
is_false = False
控制结构
条件语句
使用 if、elif 和 else 来实现条件判断。
x = 10
if x > 0:
print("x is positive")
elif x == 0:
print("x is zero")
else:
print("x is negative")
循环
for 循环:遍历序列中的每个元素。
while 循环:当条件为真时继续执行。
# for 循环
for i in range(5):
print(i)
# while 循环
count = 0
while count < 5:
print(count)
count += 1
跳出循环
break:立即退出循环。
continue:跳过当前循环体中剩余的语句,继续下一次循环。
# break 示例
for i in range(10):
if i == 5:
break
print(i)
# continue 示例
for i in range(10):
if i % 2 == 0:
continue
print(i)
函数
定义函数
使用 def 关键字来定义函数。
def greet(name):
return f"Hello, {name}!"
print(greet("Alice"))
参数
位置参数:按顺序传递参数。
关键字参数:通过参数名传递参数。
默认参数:给参数设置默认值。
可变参数:使用 *args 和 **kwargs 传递多个参数。
def add(a, b):
return a + b
print(add(3, 4))
def say_hello(name, greeting="Hello"):
return f"{greeting}, {name}!"
print(say_hello("Alice"))
print(say_hello("Bob", "Hi"))
def sum_all(*args):
return sum(args)
print(sum_all(1, 2, 3, 4))
def print_info(**kwargs):
for key, value in kwargs.items():
print(f"{key}: {value}")
print_info(name="Alice", age=25, city="New York")
模块
导入模块
使用 import 关键字导入模块。
import math
print(math.sqrt(16))
从模块导入特定功能
使用 from ... import ... 语法。
from math import sqrt
print(sqrt(16))
自定义模块
创建一个 Python 文件(如 mymodule.py),并在其中定义一些函数或变量。
# mymodule.py
def hello(name):
return f"Hello, {name}!"
然后在其他文件中导入并使用它。
import mymodule
print(mymodule.hello("Alice"))
异常处理
使用 try、except、else 和 finally 来处理异常。
try:
result = 10 / 0
except ZeroDivisionError:
print("Cannot divide by zero")
else:
print("Result:", result)
finally:
print("This will always execute")
文件操作
读取文件
使用 open 函数打开文件,并使用 read 方法读取内容。
with open('example.txt', 'r') as file:
content = file.read()
print(content)
写入文件
使用 write 方法写入内容。
with open('example.txt', 'w') as file:
file.write("Hello, World!")
列表推导式
列表推导式是一种简洁的方式来创建列表。
squares = [x**2 for x in range(10)]
print(squares) # 输出: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
字典推导式
字典推导式用于创建字典。
squares_dict = {x: x**2 for x in range(10)}
print(squares_dict) # 输出: {0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36, 7: 49, 8: 64, 9: 81}
集合推导式
集合推导式用于创建集合。
squares_set = {x**2 for x in range(10)}
print(squares_set) # 输出: {0, 1, 64, 4, 36, 9, 16, 81, 49, 25}
类和对象
定义类
使用 class 关键字定义类。
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def greet(self):
return f"Hello, my name is {self.name} and I am {self.age} years old."
# 创建对象
p = Person("Alice", 25)
print(p.greet())
总结
以上是 Python 基础语法的详细讲解,涵盖了变量、数据类型、控制结构、函数、模块、异常处理、文件操作以及面向对象编程等内容。
- 上一篇: 37.文件操作
- 下一篇: Linux系统编程:基本 I/O 系统调用
猜你喜欢
- 2024-11-22 正点原子I.MX6U嵌入式Linux C应用编程:第二章《文件I/O基础》
- 2024-11-22 如何将Python函数输出内容同时打印到屏幕和文件
- 2024-11-22 3个重点,20个函数分析,浅析FFmpeg转码过程
- 2024-11-22 Linux驱动基础篇:hello驱动
- 2024-11-22 Python自带的库(open函数)读写txt、csv、json、XML、Excel文件
- 2024-11-22 UG NX OPEN二次开发实例:UF,C语言编程,创建圆柱体,API文档翻译
- 2024-11-22 openGauss SEQUENCE函数
- 2024-11-22 Python文件操作的步骤
- 2024-11-22 Python读取与写入Excel模块:openpyxl
- 2024-11-22 PHP imap_open函数任意命令执行漏洞
- 最近发表
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)