- 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):

- 深入淺出Electron:原理、工程與實(shí)踐
- Practical UX Design
- Java Web開發(fā)之道
- Dependency Injection in .NET Core 2.0
- Elastic Stack應(yīng)用寶典
- Visual C
- Unity UI Cookbook
- D3.js By Example
- PHP面試一戰(zhàn)到底
- 數(shù)據(jù)庫技術(shù)及應(yīng)用(Access)(第2版)
- C#多線程編程實(shí)戰(zhàn)
- AngularJS Directives Cookbook
- 數(shù)控編程技能培訓(xùn):Cimatron中文版
- SpringBoot+Vue.js+分布式組件全棧開發(fā)訓(xùn)練營(視頻教學(xué)版)
- Developing Windows Store Apps with HTML5 and JavaScript