“если еще в одной строке” Ответ

Java One Line, если еще

statement ? true 	: 	false
  ^		  |	 ^			  ^
condition |   (instruction)
  		  |  If the statement:  
  		  |	is true | is false
--------------------------------------------------------------------------------
 Example:
int i = 10;

String out = i > 8 ? "Bigger than Eight!" : "Smaller than Eight!";
System.out.println(out);
TB__privi

Если одна строка

//Ternary operator for IF
condition ? ifTrue : ifFalse
Zealous Zebra

Python, если еще одна линия

x = 'foo' if bar else 'baz'
slgotting

Если еще Python в одной линии

value_when_true if condition else value_when_false
Better Example: (thanks Mr. Burns)

'Yes' if fruit == 'Apple' else 'No'

Now with assignment and contrast with if syntax

fruit = 'Apple'
isApple = True if fruit == 'Apple' else False
vs

fruit = 'Apple'
isApple = False
if fruit == 'Apple' : isApple = True
Attractive Alpaca

если еще в одной строке

# testing if else
Wandera Brian

Ответы похожие на “если еще в одной строке”

Вопросы похожие на “если еще в одной строке”

Больше похожих ответов на “если еще в одной строке” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования