您现在的位置是:课程教程文章
python中的分支有几种形式
2023-12-18 17:10课程教程文章 人已围观
【相关学习推荐:python教程】
python中的分支有三种形式,分别是:
1、if
#!/usr/bin/env python #-*- coding:utf-8 -*- user=input('Please input your username : ') if user=='admin':5 print('Nice')
2、 if ... else ...
#!/usr/bin/env python #-*- coding:utf-8 -*- user=input('Please input your username : ') pass=input('Please input your password: ') if user=='admin' and pass=='123456': print('Good') else: print('Bad')
3、if ... elif ... else ...
#!/usr/bin/env python #-*- coding:utf-8 -*- grade=(prompt='Please input your grade') if grade>=85: print('Great') elif garde<85 and grade>=70: print('Good') else grade<70: print('Bad')课程教程:python中的分支有几种形式
上一篇:mysql怎么增加数据表
下一篇:没有了