实 验 报 告
(计算机类)
课程名称: | 数据分析与挖掘 |
实验项目: | 实验一:Python基本语法 |
计算机号: | |
院系专业: | |
班级学号: | |
学生姓名: | |
实验日期: | 201年 3 月 19 日 |
制
信息管理学院实践教学中心
一、 实验目的: 1.熟悉Python的核心语法 |
二、 实验内容: 1.Python列表等重要语法训练 |
三、 实验环境(使用硬件、软件等): 1.计算机:CPU: Pentium III 600MHz以上 RAM:1G以上 硬盘空间:50G以上 2.操作系统: Windows 7 3.软件环境:Python3.6等 |
备注:序号(一)、(二)、(三)为实验预习填写项
四、 实验步骤及程序编辑: 1、 count = 0 while(count < 9): print 'The count is : ' count = count + 1 print "Good bye!" 2、 num = 10 if num <0 or num > 10: print 'Hello' else: print 'undefine' if num > 0 and num <= 10: print 'hello' else: print 'undefine' if 0 < num <=10: print 'Helllo' else: print 'undefine' 3、 num = 0 while( num<10 ): if(num%2==0): print num num = num+1 print "the end" 4、 num = 1 sum = 0 while(num<=100): sum = sum + num num=num+1 print sum | |
五、 程序调试及实验总结: 1、 实验结果 runfile('C:/Users/Administrator/.spyder-py3/temp.py', wdir='C:/Users/Administrator/.spyder-py3') The count is : The count is : The count is : The count is : The count is : The count is : The count is : The count is : The count is : Good bye! 2、 实验结果 runfile('C:/Users/Administrator/.spyder-py3/temp.py', wdir='C:/Users/Administrator/.spyder-py3') undefine hello Helllo 3、 实验结果 runfile('C:/Users/Administrator/.spyder-py3/temp.py', wdir='C:/Users/Administrator/.spyder-py3') 0 2 4 6 8 the end 4、 实验结果 runfile('C:/Users/Administrator/.spyder-py3/temp.py', wdir='C:/Users/Administrator/.spyder-py3') python新手入门基础语法5050 通过本次实验报告我对python基本语法有了进一步的了解,也基本掌握了代码的编写。 | |
六、 教师评语: 该生按时完成实验内容,实验内容和实验过程记录完整;实验报告结果正确。此次实验成绩为:优秀。 | 成 绩 |
主讲教师: 20年 月 日 | |
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论