python语言系统学习(一)

Python个人感觉入门很快,写好很难。研究生瞎学了一番,但是并没有系统性的掌握这门语言。所以使用起来也是生硬费劲儿。

python语言学习链接:

https://coding.imooc.com/class/chapter/136.html#Anchor 付费

https://coding.imooc.com/class/chapter/131.html#Anchor

python学习项目练手:

https://www.shiyanlou.com/questions/102676/?utm_source=baidu&utm_medium=cpc&utm_campaign=python&utm_term=keywords&renqun_youhua=417274

现在开始python语言语法基础学习:

1.搭建环境 2.定义变量 3.判断语句 4.循环 5.定义函数

6.面向对象

7.从一个python文件引入别的python文件。

file1.py

class A

def f

----------------------

file2.py

from file1 import A

B=A()

B.f()

原文地址:https://www.cnblogs.com/maowuyu-xb/p/11582325.html