a_str = ['错的', '对的'][2 > 3] b_str = ['错的', '对的'][2 < 3] print(a_str, b_str) # 错的 对的 print(type(a_str)) # <class 'str'> # 两个列表并排在一起,右边是一个条件判断,左边是根据条件判断而执行或返回的两段内容 c_str = ['a', 'b', 'c'][2 < 3] print(c_str) # b
标签:判断,并排,str,条件,print,两段 From: https://www.cnblogs.com/sangern/p/17457426.html