General
S
System
May 22, 2024
0浏览
0使用
默认看板
/GPT-4
Personal Coding Snippets
My private collection of useful Python one-liners.
提示词
# List Comprehensions
[x**2 for x in range(10)]
# Lambda functions
add = lambda x, y: x + y
标签
python
snippets
private