Python是一種高級編程語言,由于其簡潔、易讀、易編寫的特性,越來越受到開發(fā)者的青睞。本文將從基礎(chǔ)語法、數(shù)據(jù)類型、函數(shù)與模塊、文件操作、異常處理等方面進(jìn)行總結(jié)。
基礎(chǔ)語法
# 第一個Python程序 print("Hello World") # 注釋 # 這是單行注釋 """ 這是多行 注釋 """ # 變量 name = "Python" age = 28 print(name, age) # 數(shù)據(jù)類型轉(zhuǎn)換 x = 10 s = str(x) y = float(s)
數(shù)據(jù)類型
# 整型 a = 10 # 浮點型 b = 3.14 # 字符串 c = "Hello World" # 列表 d = [1, 2, 3, 4] # 元組 e = (1, 2, 3, 4) # 字典 f = {"name": "Bob", "age": 28} # 集合 g = {1, 2, 3}
函數(shù)與模塊
# 定義函數(shù) def add(x, y): return x + y # 調(diào)用函數(shù) result = add(1, 2) print(result) # 導(dǎo)入模塊 import random print(random.randint(0, 10)) # 導(dǎo)入特定函數(shù) from math import sqrt print(sqrt(4))
文件操作
# 文件讀取 f = open("file.txt", "r") content = f.read() f.close() # 文件寫入 f = open("file.txt", "w") f.write(content) f.close()
異常處理
# try-except語句 try: num = int(input("請輸入一個數(shù)字:")) except ValueError: print("您輸入的不是數(shù)字。") # 自定義異常 class MyException(Exception): def __init__(self, message): self.message = message try: raise MyException("This is my exception.") except MyException as e: print(e.message)