- Hands-On Penetration Testing with Python
- Furqan Khan
- 162字
- 2021-07-02 14:13:53
The if...else condition
The if...else condition is pretty much the same as in any other language. If the if condition evaluates to a True value, the code block indented under if is executed. Otherwise, the code block indented under the else block is executed:
a=44
b=66
if a > b:
print("a is Greater")
else:
print("B is either Greater or Equal")
print("End")
Let's create a file called if_else.py and see how to use it:

Again, the output here is self-explanatory. In this section of code, we explored the usage of some bitwise operators alongside the if...else code structure. We also used variables, which are to be printed with the print method. %s is a placeholder, and specifies that the value of %s should be replaced by a string variable whose value would come immaterially after the string ends. If we have multiple values to substitute, they can be passed as a tuple such as %(val1,val2,val3):

- INSTANT FreeMarker Starter
- Mastering Scientific Computing with R
- Mastering JavaScript Design Patterns(Second Edition)
- HTML5與CSS3基礎教程(第8版)
- Yii Project Blueprints
- Internet of Things with ESP8266
- Learning YARN
- Learning AWS
- Instant jQuery Boilerplate for Plugins
- NGUI for Unity
- Python預測分析與機器學習
- Building UIs with Wijmo
- 你好!Java
- Learning D3.js 5 Mapping(Second Edition)
- Java EE 7 Development with WildFly