如果有条件,请改进Python

时间:2019-02-09 23:26:09

标签: python if-statement format python-2.x code-cleanup

如果在Python 3.6中有条件,则如何将以下内容改进为一行。

import datetime

3 个答案:

答案 0 :(得分:1)

一种实现此目的的方法:

staircase

答案 1 :(得分:1)

以下一种衬垫可以实现:

cmd = "cloud {}create {}".format("beta " if beta else "", name)

答案 2 :(得分:1)

如果要减少if语句:

name = ''
beta = True

cmd = "cloud beta create {}".format(name) if beta else "cloud create {}".format(name)