Blogger Information
Blog 5
fans 0
comment 0
visits 2465
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Python中选择结构是什么
P粉465234658
Original
802 people have browsed it

1、选择结构通过判断条件是否成立来决定分支的执行。

2、选择结构形式:单分支、双分支、多分支。

3、多分支结构,几个分支之间有逻辑关系,不能随意颠倒顺序。

实例

  1. '''
  2. 单分支选择结构
  3. if 条件表达式:
  4. 语句/语句块
  5. '''
  6. if 3+2==5:
  7. print("单分支选择结构") #true
  8. '''
  9. 双分支选择结构
  10. if 条件表达式:
  11. 语句/语句块
  12. else
  13. 语句/语句块
  14. '''
  15. a = 3
  16. if a<2:
  17. print('t'+str(a)) #true
  18. else:
  19. print('f'+str(a)) # false
  20. '''
  21. 多分支选择结构
  22. if 条件表达式:
  23. 语句/语句块
  24. elif
  25. 语句/语句块
  26. .
  27. .
  28. .
  29. elif
  30. 语句/语句块
  31. [else
  32. 语句/语句块
  33. ]
  34. [] : 表示可选
  35. '''
  36. b = 2
  37. if b == 1:
  38. print('1')
  39. elif b<1:
  40. print('2')
  41. else:
  42. print('3')

以上就是Python中选择结构的介绍,希望对大家有所帮助。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post