码迷,mamicode.com
首页 >  
搜索关键字:car 限速    ( 3708个结果
电动汽车模块
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
iptables 限制长时间下载
某些路由器具有所谓的流量控制中具有“惩罚性限速”的功能:(例如)192.168.1.100在120秒内平均速率超过100KB/S,那么把该IP列入惩罚队列,惩罚队列速率是40KB/S. 其实,利用iptables的也可以实现类似的功能。脚本如下: iptables -t mangle -N LMT ...
分类:其他好文   时间:2021-02-02 11:00:48    阅读次数:0
python类继承
#类是另一个类的特殊版本,可以使用继承。一个类继承另一个类时会自动获得另一个类的所有属性和方法。原来的类称为父类,新类称为子类。#同时新类可以定义自己的属性和方法#子类的方法:__init__()#super()是特殊函数,帮助python将父类和子类关联起来,这行代码让python调用父类的方法_ ...
分类:编程语言   时间:2021-01-30 11:58:41    阅读次数:0
3708条   上一页 1 ... 3 4 5 6 7 ... 371 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!