python2
文章平均质量分 59
taoqick
这个作者很懒,什么都没留下…
展开
-
Python打印某个对象的成员变量值[Debug]
如下import jsonclass Trie: def __init__(self, a, b): self.a,self.b = a,brt = Trie(2,3)attrs = vars(rt)print(', '.join("%s: %s" % item for item in attrs.items()))原创 2020-12-11 10:32:59 · 1406 阅读 · 0 评论 -
python2 存csv和中文处理 [Debug]
如题,存csv的dictionary里key和value必须是str而不是unicode,上代码:#!/usr/bin/env python# -*- coding: utf-8 -*-import csvwith open('names.csv', 'w') as csvfile: fieldnames = ['first_name', 'last_name'] writer = csv.DictWriter(csvfile, fieldnames=fieldnames)原创 2020-11-17 14:35:52 · 151 阅读 · 0 评论 -
Cloud9 c9sdk的使用【Debug】
Cloud9是Amazon出的一款浏览器IDE方便访问linux机器。简单总结一下步骤:安装:安装过程中会依赖gcc和python2.7,需要提前装好:git clone https://github.com/c9/core.git c9sdkcd c9sdkscripts/install-sdk.sh启动:sudo node server.js -p 8080 --listen IP -a username:"password" -w /其中IP是本机的IP,p是端口,w是wo原创 2020-08-19 12:07:56 · 361 阅读 · 0 评论 -
Brews Python 2.7.7 shows up as 2.7.5
I installed a fresh version of Python viabrew install pythonAlsobrew info pythontells me that it is at version 2.7.7.I seem to remember that the python OSX Mavericks ships with is 2.5.转载 2014-06-20 19:48:23 · 718 阅读 · 0 评论 -
php exec python script not working [Solved][Debug]
When you useexecin php to call shells like python, perl or other script. please follow the step below for your debugging:1exec("$your_command_here 2>&1",$output,$return原创 2015-07-11 19:00:25 · 888 阅读 · 0 评论 -
Anaconda和pip使用总结 conda与pip的区别
序Python易用,但用好却不易,其中比较头疼的就是包管理和Python不同版本的问题,特别是当你使用Windows的时候。为了解决这些问题,有不少发行版的Python,比如WinPython、Anaconda等,这些发行版将python和许多常用的package打包,方便pythoners直接使用,此外,还有virtualenv、pyenv等工具管理虚拟环境。个人尝试了很多类似的发行版,...转载 2017-02-21 15:27:00 · 13825 阅读 · 1 评论 -
custom python matlabplot
Add Parameters:import matplotlib.pyplot as pltimport numpy as npfrom itertools import cyclefrom sklearn import svm, datasetsfrom sklearn.metrics import precision_recall_curvefrom sklearn.m原创 2017-08-10 18:31:48 · 593 阅读 · 0 评论 -
Python模块之 __future__
今天在学习Python Cookbook的时候,发现一句语法from __future__ import division,很奇怪__future__这个名字,网上搜了一下,原来是很有用的一个模块。详细说明见这里。按照官方的解释,至少确保在2.1之前版本的Python可以正常运行一些新的语言特性,需要使用语句 'from __future__ import *'。举例来说:#转载 2018-01-23 17:52:38 · 317 阅读 · 0 评论