cat car.py 1 #! /usr/bin/python 2 # -*- coding:utf-8 -*- 3 4 5 class Car(object): 6 """ 7 模拟汽车 8 """ 9 def __init__(self, make, model, year): 10 """初始 ...
分类:
其他好文 时间:
2021-02-19 13:20:12
阅读次数:
0
cat electric_car.py 1 #! /usr/bin/python 2 # -*- coding:utf-8 -*- 3 4 from car import Car 5 6 class Battery(object): 7 """ 8 模拟电瓶 9 """ 10 def __init_ ...
分类:
其他好文 时间:
2021-02-19 13:19:52
阅读次数:
0
cat my_car.py 1 #! /usr/bin/python 2 # -*- coding:utf-8 -*- 3 4 5 from car import Car 6 from electric_car import ElectricCar 7 # Car类逻辑测试 8 my_new_car ...
分类:
其他好文 时间:
2021-02-19 13:19:13
阅读次数:
0
opencv库的安装配置的教程网上很多了,这个可以作为图像处理及2D图形的绘制库,一个cv::Mat就是一个像素矩阵,cv将图像认为是一个二维矩阵 这个图像的原点在左上角,x轴水平向右,y轴水平向下,所以我们画线的坐标要localPointToCVPoint转,setWorldOrigin这个函数是 ...
分类:
编程语言 时间:
2021-02-19 13:16:30
阅读次数:
0
create: 1、创建序列化器对象时,如果仅仅只传data参数2、序列化器对象调用save方法时,会调用序列化器类中的create方法,进行数据创建操作 serializer = serializers.ProjectModelSerializer(data=python_data) serial ...
分类:
其他好文 时间:
2021-02-19 13:07:18
阅读次数:
0
程序代写,代写程序,程序代做,代做程序 我们是上学威龙编程辅导团队,现有5位来自一线互联网企业的资深研发工程师小伙伴,主营: C语言代写,C++代写,Java代写,python代写,golang代写 Javascript代写,JS代写,HTML代写 编程代写,程序代写,编程代做,程序代做 课程辅导: ...
分类:
其他好文 时间:
2021-02-19 13:06:27
阅读次数:
0
1、windows10 pip设置目录:C:\ProgramData\pip\pip.ini [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ ←--清华大学源 2、dos命令:pip config --global set ...
分类:
编程语言 时间:
2021-02-19 13:05:20
阅读次数:
0
Python语言特性 参数传递 (不)可变对象 可变参数 Python 异常机制常考题 Python性能分析与优化GIL常考题 什么是生成器 协程需要使用 send(None)或者 next(coroutine)来预激prime才能启动 在yield 处协程会暂停执行 单独的 yield value ...
分类:
编程语言 时间:
2021-02-18 13:56:04
阅读次数:
0
1、 aaa = "123" answer = input("please input the answer:") while True: if answer == aaa: break answer = input("please input the answer,again:") print(" ...
分类:
编程语言 时间:
2021-02-18 13:38:19
阅读次数:
0
python函数注释,参数后面加冒号:,函数后面的箭头→是什么? python的函数注释: def f(text:str,max_len:'int>0'=80) ->str: """这个是函数的帮助说明文档,help时会显示""" return True """ 函数声明中,text:str tex ...
分类:
编程语言 时间:
2021-02-18 13:29:52
阅读次数:
0