
Python
文章平均质量分 65
Python
Stay hungry. Stay foolish.
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
4、python常用库
一、Numpy import numpy as np a = np.array([1,2,3,4]) b = np.array([[1,2,3,4]]) c = np.array([[1,2,3,4],[5,6,7,8]]) d = np.array([[1,2,3],[5,6,7],[9,10,11]]) print(a.size) print(b.size) print(c.size) print(d.size) print(a.shape) print(b.shape) print(c.shape原创 2021-02-09 11:01:42 · 229 阅读 · 0 评论 -
3、动态绑定属性和方法
1、动态绑定属性和方法 正常情况下,当我们定义了一个class,创建了一个class的实例后,我们可以给该实例绑定任何属性和方法,这就是动态语言的灵活性。 #给对象绑定属性 class Student(object): def __init__(self): self.age=10 self.score=90 s1 = Student() s2 = Student() s1.name = "liu" print(s1.name) #给对象绑定方法,但是只对当前实例起原创 2020-12-10 14:40:25 · 592 阅读 · 0 评论 -
2、海龟绘图
turtle是python的一个标准库,无需安装,可以直接导入使用,这只是一个绘图工具,不用去记忆各个函数,去查pyhton的手册即可,python手册网址 1、绘制螺旋曲线 import turtle#导入模块 turtle.bgcolor("green")#设置背景颜色 t=turtle.Turtle()#创建一个海龟对象 color = ["red","black","white"]#用列表存放铅笔的颜色值 for i in range(0,200,4)://前进值为4 t.pencolor(原创 2020-11-09 10:35:40 · 473 阅读 · 0 评论 -
1、python、工具包、anaconda、pycharm、jupyter notebook的安装和配置
一、Python安装 下载地址: https://www.python.org/ 二、Python代码的执行 编译器:先编译后再执行,如.c和.cpp 解释器:Python是边解释边执行原创 2020-09-08 09:13:21 · 280 阅读 · 0 评论