标签: python python-3.x logic conditional conditional-statements
Python是否可以替代R的ifelse函数?也就是说,单行替换:
ifelse
b = np.random.randn() i = '' if b > 0: i = 'non-negative' elif b == 0: i = 'zero' else: i = 'negative'
因此它根据另一个变量的值为变量赋值。