码迷,mamicode.com
首页 >  
搜索关键字:car recorder    ( 3461个结果
汽车模块
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
The 2020 ICPC Asia Taipei-Hsinchu Site Programming Contest 部分题解
Problem A Right-Coupled Numbers 留坑。 Problem B Make Numbers 留坑。 Problem C Pyramid 留坑。 Problem D Quality Monitoring 留坑。 Problem E A Color Game 留坑。 Probl ...
分类:其他好文   时间:2021-02-16 12:17:48    阅读次数:0
14. 最长公共前缀
14. 最长公共前缀 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 输入:strs = ["flower","flow","flight"] 输出:"fl" 示例 2: 输入:strs = ["dog","racecar","car"] 输出: ...
分类:其他好文   时间:2021-02-16 11:50:27    阅读次数:0
C#根据输入的字符串来创建类的实例
abstract class Vehicle { public abstract void Drive(); } class Car : Vehicle { public override void Drive() { Console.WriteLine("Car is driving..."); ...
分类:Windows程序   时间:2021-02-10 13:28:53    阅读次数:0
漏洞扫描工具
OpenVASTripwire IP360NessusComodo HackerProofNexpose communityVulnerability Manager PlusNiktonmapVeracodeWiresharkAircrack-ngRetinaParosWebScarabWebIn ...
分类:其他好文   时间:2021-02-10 13:23:01    阅读次数:0
HTTP Content Type | HTTP Media Type
HTTP Content Type 文件扩展名 Content-Type 文件扩展名 Content-Type .* application/octet-stream .tif image/tiff .001 application/x-001 .301 application/x-301 .323 ...
分类:Web程序   时间:2021-02-10 13:19:44    阅读次数:0
Leetcode - Gas Station
There are n gas stations along a circular route, where the amount of gas at the ith station is gas[i]. You have a car with an unlimited gas tank and i ...
分类:其他好文   时间:2021-02-08 11:44:08    阅读次数:0
jmeter 进行简单的脚本设计
恢复内容开始 恢复内容开始 恢复内容开始 恢复内容开始 1.在选择Http(S) Test Script Recorder 添加完成之后点击start 启动代理服务器 开始进行录制 性能测试报告中要注意数据的横向对比(优化前和优化后)和纵向对比。 启动抓包工具: 启动抓包工具并且输入对应需要抓包的页 ...
分类:其他好文   时间:2021-02-04 12:12:21    阅读次数:0
3461条   上一页 1 ... 3 4 5 6 7 ... 347 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!