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编程至关重要

相关推荐
小牛itbull10 分钟前
ReactPress vs VuePress vs WordPress
开发语言·javascript·reactpress
请叫我欧皇i18 分钟前
html本地离线引入vant和vue2(详细步骤)
开发语言·前端·javascript
nuclear201120 分钟前
使用Python 在Excel中创建和取消数据分组 - 详解
python·excel数据分组·创建excel分组·excel分类汇总·excel嵌套分组·excel大纲级别·取消excel分组
闲暇部落21 分钟前
‌Kotlin中的?.和!!主要区别
android·开发语言·kotlin
GIS瞧葩菜30 分钟前
局部修改3dtiles子模型的位置。
开发语言·javascript·ecmascript
chnming198735 分钟前
STL关联式容器之set
开发语言·c++
Lucky小小吴35 分钟前
有关django、python版本、sqlite3版本冲突问题
python·django·sqlite
熬夜学编程的小王1 小时前
【C++篇】深度解析 C++ List 容器:底层设计与实现揭秘
开发语言·数据结构·c++·stl·list
GIS 数据栈1 小时前
每日一书 《基于ArcGIS的Python编程秘笈》
开发语言·python·arcgis
Mr.131 小时前
什么是 C++ 中的初始化列表?它的作用是什么?初始化列表和在构造函数体内赋值有什么区别?
开发语言·c++