Python
文章平均质量分 66
卫龙女孩
这个作者很懒,什么都没留下…
展开
-
PYTHON | python基础知识查漏补缺
字符串列表元祖字典Python面向对象Python JSONPython异常处理常见Linux命令原创 2021-01-05 15:06:17 · 118 阅读 · 0 评论 -
PYTHON | unittest单元测试入门
1.test_article.py:import unittestclass MyTestCase(unittest.TestCase): def setUp(self): print("环境预测") def test_something(self): print("测试用例") self.assertEquals(True...原创 2019-05-23 19:46:08 · 230 阅读 · 0 评论 -
Python | win10 python3.6.7安装pytorch
官网的方法:pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1-cp36-cp36m-win_amd64.whlpip3 install torchvision安装后import torch,还是没有这个模块用conda装:conda install pytorch torchvision cudatoolkit=...原创 2019-05-30 19:54:51 · 466 阅读 · 0 评论 -
PYTHON | python2与python3的切换
同时安装python2和python3的切换与配置转载 2019-05-04 19:02:06 · 168 阅读 · 0 评论 -
PYTHON | 使用matplotlib画图——线属性
转自:matplotlib中的作图参数转载 2019-04-14 16:57:15 · 192 阅读 · 0 评论 -
PYTHON | 读取CSV文件时如何跳过第一行?
参考https://blog.csdn.net/vernice/article/details/46501885from itertools import isliceinput_file = open("C:\\Python34\\test.csv")for line in islice(input_file, 1, None): do_readline()转载 2019-04-09 16:34:13 · 4364 阅读 · 0 评论 -
PYTHON | Python基础
教程:python2-RUNOOB.COMPython 简介Python 是一种解释型语言: 这意味着开发过程中没有了编译这个环节。类似于PHP和Perl语言。Python 是交互式语言: 这意味着,您可以在一个Python提示符,直接互动执行写你的程序。Python 是面向对象语言: 这意味着Python支持面向对象的风格或代码封装在对象的编程技术。Python 是初学者的语言:P...原创 2018-11-22 01:10:02 · 2619 阅读 · 0 评论 -
PYTHON | 如何查看python安装路径?
原创 2019-03-31 01:17:22 · 408 阅读 · 0 评论 -
PYTHON | 关于中文的吐血经验
参考 https://blog.csdn.net/u012399684/article/details/81809220原创 2019-03-13 22:54:49 · 237 阅读 · 0 评论 -
算法概论 project | Capacitated Facility Location Problem —— 贪心算法、模拟退火、禁忌搜索
题目描述Suppose there are n facilities and m customers. We wish to choose:which of the n facilities to openthe assignment of customers to facilitiesThe objective is to minimize the sum of the openin...原创 2018-12-22 01:22:09 · 618 阅读 · 1 评论 -
RuntimeError: maximum recursion depth exceeded while getting the repr of an object
threading.Timer格式写错。例如:timers[seq] = threading.Timer(time_limit, send_pkt())应该改成:timers[seq] = threading.Timer(time_limit, send_pkt)再如:timers[seq] = threading.Timer(time_limit, send_pkt(seq, d...原创 2018-11-27 17:14:44 · 1944 阅读 · 1 评论 -
PYTHON | 高级教程
教程地址:Python 高级教程面向对象技术简介类(Class): 用来描述具有相同的属性和方法的对象的集合。它定义了该集合中每个对象所共有的属性和方法。对象是类的实例。类变量:类变量在整个实例化的对象中是公用的。类变量定义在类中且在函数体之外。类变量通常不作为实例变量使用。数据成员:类变量或者实例变量, 用于处理类及其实例对象的相关的数据。方法重写:如果从父类继承的方法不能满足子类...转载 2018-11-22 22:39:33 · 1741 阅读 · 0 评论 -
PYTHON | 可更改(mutable)与不可更改(immutable)对象
在 python 中,strings, tuples, 和 numbers 是不可更改的对象,而 list,dict 等则是可以修改的对象。不可变类型:变量赋值 a=5 后再赋值 a=10,这里实际是新生成一个 int 值对象 10,再让 a 指向它,而 5 被丢弃,不是改变a的值,相当于新生成了a。可变类型:变量赋值 la=[1,2,3,4] 后再赋值 la[2]=5 则是将 list l...转载 2018-11-22 13:24:39 · 401 阅读 · 0 评论 -
PYTHON | 格式化日期
我们可以使用 time 模块的 strftime 方法来格式化日期,:time.strftime(format[, t])实例:#!/usr/bin/python# -*- coding: UTF-8 -*- import time # 格式化成2016-03-20 11:45:39形式print time.strftime("%Y-%m-%d %H:%M:%S&转载 2018-11-22 12:57:06 · 228 阅读 · 0 评论 -
ASCII、Unicode和UTF-8的关系
字符串和编码-廖雪峰转载 2018-11-21 15:06:46 · 189 阅读 · 0 评论 -
PYTHON | Python学习笔记(Python简介——Python基础)
教程:Python教程-廖雪峰的官方网站Python简介Python是著名的“龟叔”Guido van Rossum在1989年圣诞节期间,为了打发无聊的圣诞节而编写的一个编程语言。Python是一种相当高级的语言。代码少的代价是运行速度慢。用Python可以做什么?可以做日常任务,比如自动备份你的MP3;可以做网站,很多著名的网站包括YouTube就是Python写的;可以做网络...原创 2018-11-21 00:31:46 · 20452 阅读 · 25 评论