教学案例.md 1.5 KB

第一次课

I.内容

1.语言要素规范 2.python解释器与开发工具 3.数据定义 4.数据运算与运算符

II.要求

1.能编写代码并运行代码

III.实验1:语言规范与工具实验

######实验要求

1.能使用如下方式编写;运行Python代码(非程序) 1.1.vscode编辑器; def new_func():

>

new_func() 1.2.python交互式编程;

1.3.jupyter编写; 2.能使用git上传代码;

实验案例
  • 案例1.安装Python学习相关软件(本机,使用平台的不用安装) 1.安装python 2.安装git 3.安装jupyter 4.安装opencv,numpy 5.安装VScode -案例2.编译编写一个程序,打印一个表格 1.Vscode源代码 name1 = "赵德柱" name2 = "黄金花" score1 = 90.67 score2 = 99.56 print("┏━━━━━━┳━━━━━━┓") print(F"┃{name1}┃ {score1}┃") print("┣━━━━━━╋━━━━━━┫") print(F"┃{name2}┃ {score2}┃") print("┗━━━━━━┻━━━━━━┛")

    2.jupyter版本 name1 = "赵德柱" name2 = "黄金花" score1 = 90.67 score2 = 99.56 print("┏━━━━━━┳━━━━━━┓") print(F"┃\033[31m{name1}\033[0m ┃ {score1}┃") print("┣━━━━━━╋━━━━━━┫") print(F"┃\033[31m{name2} \033[0m┃ {score2}┃") print("┗━━━━━━┻━━━━━━┛")

-案例3.使用git上传代码服务器,并使用markdown(说明作业完成情况)。