Python零基础视频教程 - 3 - Installing PyCharm

跟着可叔学Python第三讲 —— Installing PyCharm

(听从好友的建议,从这集往后,标题名将改为:Python零基础视频教程)

视频内容包括:

如何下载安装PyCharm

如何创建你的第一个Project

什么是虚拟环境(virtual environment)?

为什么要创建虚拟环境(virtual environment)?

如何运行你的代码?

如何添加第三方类库?

没在视频中交待的小技巧:

 如何查看当前项目第三方类库的安装路径

>>> import site>>> site.getsitepackages()['D:\\PycharmProjects\\Demo\\venv', 'D:\\PycharmProjects\\Demo\\venv\\lib\\site-packages']

另上集视频中对于字符串的处理,在Python3.6中新增了f-string的写法,比str.format()的写法更为简洁明了,而且运行速度还快。建议采用最新的写法,原有视频并没有介绍,在此补入:

先贴一下之前的str.format()的写法:

>>> name = 'Fred'

>>> age = 42

>>> 'He said his name is {} and he is {} years old.'.format(name,age)He said his name is Fred and he is 42 years old.

如果用f-string来改写,是这样的:

>>> name = 'Fred'

>>> age = 42

>>> f'He said his name is {name} and he is {age} years old.'He said his name is Fred and he is 42 years old.

是不是简洁了很多,只需要在字符串前面加上字母f,然后在{}里填入相应的变量名就可以了。

不仅如此,f-string中的f是从fast而来,意味这这种写法python解释执行起来的速度是很快的,这里贴一张图,大家感受一下,可以看到,用f-strings的写法的运行时间是最少的。

本公众号坚持原创,坚持简单粗鄙的排版(把更多的精力放花在视频内容的制作上),欢迎转载,并请注明出处,请勿作任何商业用途。

谢谢大家的持续关注。

打开观看腾讯视频


3 - Installing PyCharm_腾讯视频

你可能感兴趣的:(Python零基础视频教程 - 3 - Installing PyCharm)