创建字典 使用花括号创建字典 dict1 = {"name": "Alice", "age": 25, "city": "New York"} 使用 dict() 函数创建字典 dict2 = dict(name="Bob", age=30, city="San Fr
案例1:统计单词频率 编写一个程序,统计一段文本中每个单词出现的频率。 def count_word_frequency(text): words = text.split() word_count = {} for word in words: word = word.lower() # 忽略大小写 word = word.strip(
one import math def is_close(p1, p2, range_): """判断两个点是否在指定范围内""" return math.isclose(p1[0], p2[0], abs_tol=range_) and math.isclose(p1[1], p2[1], abs_tol=range
交点 def find_intersection(line1, line2): # 提取线的端点 x1, y1, x2, y2 = line1 x3, y3, x4, y4 = line2 # 计算分母 denom = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1) if denom == 0:
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号