Python实验3选择结构程序设计(共2页).doc
《Python实验3选择结构程序设计(共2页).doc》由会员分享,可在线阅读,更多相关《Python实验3选择结构程序设计(共2页).doc(2页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上实验3 选择结构程序设计(续)【实验目的】 1掌握分支条件语句的使用。2掌握分支嵌套语句的使用。【实验内容】1. 通过Input()函数任意输入三条边长,经过简单的计算后,判断三条边长能否构成三角形,并确定是类型的三角形,如(等边,等腰,一般三角形)。a=input(Please input the length of a:)b=input(Please input the length of b:)c=input(Please input the length of c:)if a+bc and a+cb and b+ca: if a=b=c: print This
2、 is an equilateral triangle. if a=b or a=c or b=c: print This is an isosceles triangle. if a!=b!=c: print This is a scalene triangle.else: print These lengths can not form a triangle.2. 密码登录程序。要求:建立一个登录窗口,要求输入帐号和密码。设定用户名为”zhangshan”,密码为“Python123”;若用户名正确,密码正确,则显示“Zhangshan先生,欢迎你!”;如果用户名错误,则显示“用户名错误,
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Python 实验 选择 结构 程序设计
限制150内