python tips:省略括号

Posted luoheng23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python tips:省略括号相关的知识,希望对你有一定的参考价值。

在Python中,有两种情况下可以省略括号。

  1. 将生成器作为函数的唯一参数
  2. 元组作为字典的键

示例如下

# 正常版本
s = sum((i for i in range(10)))
# 省略括号
s = sum(i for i in range(10))
# 正常版本
s = "".join((i for i in "hello world"))
# 省略括号
s = "".join(i for i in "hello world")
# 字典
s = (1, 2, 3): "hello world"
print(s[(1, 2, 3)], s[1, 2, 3])

输出结果

hello world hello world

以上是关于python tips:省略括号的主要内容,如果未能解决你的问题,请参考以下文章

Python风格规范

Python编码风格

[Tips] python的切片操作

特有的字符串格式化函数format——python篇

python赋值语句的形式

Python学习笔记