学好python自动化办公,3分钟做完一天的工作,告别重复繁琐的工作,0编程经验

课代表总结了python自动化办公的信息👍👍👍
视频内容:
1️⃣python语言✍️
2️⃣python的特点📄
3️⃣解释器🏷️
4️⃣python安装📑
5️⃣hello world🔖
视频内容:
1️⃣python语言✍️
89年龟叔
人工智能2012年
Day1-1.python介绍和变量 P1 - 09:53

2️⃣python的特点📄
#优点:简明简单跨平台性好
#缺点:慢-执行速度相对其他语言慢
#编程语言的分类:代码-->中国人\印度人
#编译型语言: c c++ java go
#解释型语言:python
Day1-1.python介绍和变量 P1 - 14:29

3️⃣解释器🏷️
#cpython:官方推荐的#
ipython : anacoda提供的,几乎一样,交互上有一些微弱的区别
# jython:和java平台进行交互
#ironpython :和.net平台进行交互

4️⃣python安装📑
# python2. x# python3.x
#两个版本互相不兼容

5️⃣hello world🔖
# print ( ' hello, world ' )
#两种运行方式
#在python解释器中直接写:
print ( ' hello, world ' )
#断电消失,重启代码消失
#将print ( ' hello,world')写在文件中
#在命令行执行python文件路径#文件习惯用.py结尾
#代码会水久储存在文件中
