15 个提高效率的 Python 编程技巧

每次写 Python 都会忘记该怎么写,最后只能去 Stack Overflow 查?我也一样。时间一长,这让人厌倦。

这 15 个 Python 技巧和窍门,可以帮你提高效率。

 

1. 交换值

x, y = 1, 2
print(x, y)
x, y = y, x
print(x, y)

 2. 字符串列表合并为一个字符串

sentence_list = ["my", "name", "is", "George"]
sentence_string = " ".join(sentence_list)
print(sentence_string)

3. 将字符串拆分为子字符串列表

sentence_string = "my name is George"
sentence_string.split()
print(sentence_string)

4. 通过数字填充初始化列表

[0]*1000 # List of 1000 zeros 
[8.2]*1000 # List of 1000 8.2's

5. 字典合并

你可能感兴趣的:(python)