标签:介绍 val 好的 友好 value targe 语言 tutorials 概述
概述
背景
环境
类型
概述
例子
# 语法
# py 式的变量命名, 我觉得也挺不错
<value_1> if <condition> else <value_2>
# 例子1
# 结果为 "High"
x = 18
result = "High" if x > 10 else "Low"
print(result)
# 例子2
# 结果为 "Low"
x = 1
result = "High" if x > 10 else "Low"
print(result)
麻烦
这玩意的问题是, java 也有类似的东西, 但是 java 它语法不一样
# 但愿切语言的时候, 我能切过来
<condition> ? <value1> : <value2>
Python: if-else in one line – ( A Ternary operator )
标签:介绍 val 好的 友好 value targe 语言 tutorials 概述
原文地址:https://www.cnblogs.com/xy14/p/14690965.html