在pycharm中创建项目,创建项目文件
以每一个块作为整体来运行
IDE
运行程序
两种变量的类型不匹配
D:\ANACONDA\envs\pytorch\python.exe C:/Users/Administrator/Desktop/Code/learn_pytorch/first_demo.py
Start
Traceback (most recent call last):
File "C:/Users/Administrator/Desktop/Code/learn_pytorch/first_demo.py", line 4, in <module>
c = a + b
TypeError: must be str, not int
Process finished with exit code 1
修改为同样的数据类型就可以继续执行
阅读性
会更好python文件的块是所有行的代码
是以任意行为块运行的
代码是以块为一个整体运行的话
IDE的块
是所有航的代码
console的块
是以每一行为块运行的
print('Start')
...: a='hello world'
Start
jupyter
是以任意行为块运行的
希望根据实际情况选择需要使用,穿插使用
Ctrl+ALt+L:对代码进行格式化操作,规范化代码
-blog.csdnimg.cn/4ade805ed96048aaae8f1ee4d294554a.png