Python 指令碼高階程式設計:從基礎到實踐

我点评开发者社区發表於2024-10-07

Python 指令碼是一種強大的工具,可用於各種任務,從自動化日常工作到處理複雜的資料操作。以下是一些關於 Python 指令碼的高階概念和程式碼示例。

函式的高階用法

def complex_function(name, age, *args, **kwargs):
print(f"Name: {name}, Age: {age}")
print("Additional arguments:")
for arg in args:
print(arg)
print("Keyword arguments:")
for key, value in kwargs.items():
print(f"{key}: {value}")

complex_function("Alice", 25, "Extra Arg 1", "Extra Arg 2", location="New York", occupation="Engineer")
異常處理的高階技巧

try:
result = 10 / 0
except ZeroDivisionError as e:
print(f"Caught an exception: {e}")
except Exception as e:
print(f"Caught a more general exception: {e}")
finally:
print("This will always be executed")
裝飾器的應用

def my_decorator(func):
def wrapper(*args, **kwargs):
print("Before function execution")
result = func(*args, **kwargs)
print("After function execution")
return result
return wrapper

@my_decorator
def sample_function(name):
print(f"Hello, {name}!")

sample_function("Bob")
上下文管理器

class MyContextManager:
def __enter__(self):
print("Entering the context")
return self

def __exit__(self, exc_type, exc_val, exc_tb):
print("Exiting the context")
if exc_type is not None:
print(f"Exception occurred: {exc_type}, {exc_val}")
return False

with MyContextManager() as cm:
print("Inside the context")
raise ValueError("This is an example exception")
併發與並行程式設計

import concurrent.futures

def long_running_task(name, duration):
print(f"Starting {name} for {duration} seconds")
import time
time.sleep(duration)
print(f"{name} completed")

with concurrent.futures.ThreadPoolExecutor(max_workers=2) as executor:
futures = [executor.submit(long_running_task, "Task 1", 3), executor.submit(long_running_task, "Task 2", 5)]
for future in concurrent.futures.as_completed(futures):
pass


本文轉自:https://www.wodianping.com/app/2024-10/46617.html

相關文章