python常见语法

  • 变量赋值

    复制代码
    my_var = 10
  1. 基本数据类型

    • 整数(int)、浮点数(float)、字符串(str)、布尔值(bool)、列表(list)、元组(tuple)、集合(set)、字典(dict)。
  2. 字符串

    复制代码
    s = 'This is a string in single quotes.' s = "This is a string in double quotes."
  3. 列表

    复制代码
    my_list = [1, 2, 3, 'Python']
  4. 元组

    复制代码
    my_tuple = (1, 2, 3)
  5. 字典

    复制代码
    my_dict = {'name': 'Python', 'version': 3.8}
  6. 条件语句

    复制代码
    if condition: 
        # Do something 
    elif another_condition: 
        # Do something else 
    else: 
        # Do a different thing
  7. 循环

    复制代码
    #它for循环和while循环。
    
    for item in my_list: 
        print(item) 
    
    while condition: 
        # Loop body
  8. 函数定义

    复制代码
    def my_function(param1, param2): 
        # Function body return result
  9. 类和对象

    复制代码
    class MyClass: 
        def __init__(self, attribute): 
            self.attribute = attribute 
    
        def my_method(self): 
            # Method body
  10. 模块和包

    复制代码
      # 导入和使用模块。
      import module_name from package import module
  11. 异常处理

    复制代码
    try: 
        # Try to do something except Some
    Exception as e: 
        # Handle exception 
    finally: 
        # Clean-up code
  12. 列表推导式

    复制代码
    squares = [x**2 for x in range(10)]
  13. 字典推导式

    复制代码
    squares_dict = {x: x**2 for x in range(10)}
  14. 生成器表达式

    复制代码
    squares_gen = (x**2 for x in range(10))
  15. 装饰器

    复制代码
    def my_decorator(func): 
        def wrapper(*args, **kwargs): 
            # Do something before 
            result = func(*args, **kwargs) 
            # Do something after 
            return result 
        return wrapper 
    
    @my_decorator 
    def my_function(): 
        # Function body
  16. Lambda函数

    复制代码
    lambda arguments: expression
  17. 三元运算符

    复制代码
    value_if_true if condition else value_if_false
  18. 全局和局部变量

    复制代码
    global my_global_var
  19. 文件操作

    复制代码
    with open('file.txt', 'r') as file: 
        content = file.read()
  20. 异步编程

    复制代码
    async def my_async_function(): 
        await some_async_operation()
  21. 类型注解

    复制代码
    def my_function(param1: int, param2: str) -> bool: # Function body
  22. 属性装饰器

    复制代码
    @property 
    def my_property(self): 
        return self._my_attribute 
    
    @my_property.setter 
    def my_property(self, value): 
        self._my_attribute = value

这些是Python编程中经常使用的语法元素。掌握这些基础对于进行有效的Python编程至关重要

相关推荐
oioihoii21 分钟前
性能提升11.4%!C++ Vector的reserve()方法让我大吃一惊
开发语言·c++
毕设源码-朱学姐22 分钟前
【开题答辩全过程】以 基于JAVA的恒星酒店客房管理系统为例,包含答辩的问题和答案
java·开发语言
思密吗喽26 分钟前
景区行李寄存管理系统
java·开发语言·spring boot·毕业设计·课程设计
Rust语言中文社区28 分钟前
【Rust日报】Dioxus 用起来有趣吗?
开发语言·后端·rust
小灰灰搞电子32 分钟前
Rust Slint实现颜色选择器源码分享
开发语言·后端·rust
q***235736 分钟前
python的sql解析库-sqlparse
数据库·python·sql
18你磊哥1 小时前
Django WEB 简单项目创建与结构讲解
前端·python·django·sqlite
无限进步_1 小时前
C语言数组元素删除算法详解:从基础实现到性能优化
c语言·开发语言·windows·git·算法·github·visual studio
月殇_木言1 小时前
Python期末复习
开发语言·python
松涛和鸣1 小时前
16、C 语言高级指针与结构体
linux·c语言·开发语言·数据结构·git·算法