- 博客(7)
- 收藏
- 关注
原创 字典的填充与查找
将列表转化为字典,再根据字典的数据进行查找#!coding:utf-8# Author:pymingmingimport xlrddef read(file, sheet_index=0): #sheet_index=0 读取sheet1,等于1时读取sheet2 workbook = xlrd.open_workbook(file) #将数据存于wookbook
2017-09-29 08:10:58 451
原创 excel数据格式化输出
#!coding:utf-8# Author:pymingmingimport xlrd #导入excel库class Person(): def __init__(self, name, number, _class): self.name = name self.number = number self._class = _c
2017-09-28 20:00:52 2351
原创 用类统计信息
!coding:utf-8# Author:pymingmingclass Person(): def __init__(self,name,age,job): self.name = name self.age = age self.job = job def message(self): info = '''
2017-09-28 08:47:58 208
翻译 shoppping list
老男孩教育案例,拿出来和大家分享一下#!coding:utf-8# Author:pymingmingproduct_list = [ ('Iphone', 5800), ('Mac Pro', 9800), ('Bike', 820), ('watch', 10600), ('Coffee', 31), ('Alex python', 1
2017-09-27 09:01:01 304
原创 一种寻找众数的Python小程序
import numpy as npdata = [1,2,3,3,4,3,3,5,3,5,6,5,7,7,7,7,5,8]def modal(value): unidata = set(data) zhi = [] shu = [] for i in unidata: number = data.count(i) zhi.app
2017-09-22 10:45:22 969
原创 使用 matplotlib 绘制western blot表达量柱状图
素闻Python matplotlib 绘图功能强大,特地在网上搜索资源尝试了一下,综合各位大神的笔记,编写了一个绘制绘制western blot表达量柱状图的小程序#!coding:utf-8import numpy as np #导入numpy函数 import matplotlib.pyplot as plt #导入matplotlib函数n_groups
2017-09-21 09:33:14 5154
原创 如何用python实现蛋白质磷酸化位点的搜索
小白最近做磷酸化实验,进行蛋白多序列比对的时候发现NCBI BLAST中多序列联配不是很准确,于是参考python,编写了一个找特定磷酸化位点的程序。#!coding:utf-8import re #导入正则表达式模块motif = input('Please input motif:') #输入磷酸化位点regexp = re.compile(motif) #运用正则表
2017-09-21 08:03:20 2553
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人