Clarified first 2 sentences (#27490)
Updated word order and added comma in the first sentence to clarify meaning. Standardized the order and look of if/elif/else to match main article on the topic.
This commit is contained in:
		
				
					committed by
					
						 The Coding Aviator
						The Coding Aviator
					
				
			
			
				
	
			
			
			
						parent
						
							a7f54f4f1b
						
					
				
				
					commit
					7d1f321717
				
			| @@ -2,9 +2,9 @@ | |||||||
| title: Python Ternary Operater | title: Python Ternary Operater | ||||||
| --- | --- | ||||||
| # Ternary operator in Python | # Ternary operator in Python | ||||||
| Ternary operations in Python, often also referred to as conditional expressions allow the programmer to perform an evaluation and return a value based on the truth of the given condition. | Ternary operations in Python, also often referred to as conditional expressions, allow the programmer to perform an evaluation and return a value based on the truth of the given condition. | ||||||
|  |  | ||||||
| The ternary operator differs from a standard `if`, `else`, `elif` structure in the sense that it is not a control flow structure, and behaves more like other operators such as `==` or `!=` in the Python language. | The ternary operator differs from a standard `if`/`elif`/`else` structure in the sense that it is not a control flow structure, and behaves more like other operators such as `==` or `!=` in the Python language. | ||||||
|  |  | ||||||
| ### Example | ### Example | ||||||
| In this example, the string `Even` is returned if the `val` variable is even, otherwise the string `Odd` is returned. The returned string is then assigned to the `is_even` variable and printed to the console. | In this example, the string `Even` is returned if the `val` variable is even, otherwise the string `Odd` is returned. The returned string is then assigned to the `is_even` variable and printed to the console. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user