“Wenn sonst in einer Zeile” Code-Antworten

Java eine Zeile, wenn sonst

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

Wenn eine Zeile

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

Python, wenn sonst eine Zeile

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

Wenn sonst Python in einer Linie

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

Wenn sonst in einer Zeile

# testing if else
Wandera Brian

Ähnliche Antworten wie “Wenn sonst in einer Zeile”

Fragen ähnlich wie “Wenn sonst in einer Zeile”

Weitere verwandte Antworten zu “Wenn sonst in einer Zeile” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen