码迷,mamicode.com
首页 >  
搜索关键字:tell    ( 578个结果
pygrib学习
pygrib-2.0.3/docs/index.html 导入pygrib模块 打开grib文件,获取grib消息迭代器 和打开正常的python文件对象一样,pygrib使用seek, tell, read, readline, 和close方法打开grib文件。唯一的不同的是,偏移量用grib消 ...
分类:其他好文   时间:2018-09-26 13:04:36    阅读次数:1622
面向对象三大特性
class olper: sch = ‘oldboy‘ def __init__(self, name, age, sex): self.name = name self.age = age self.sex = sex def tell__info(self): print(‘名字:<%s> 年龄:<%s> 性别:<%s>‘ %(self.name,self.age,self.sex)) class olstu(olper): def learn(self): print(‘%s is learing‘ % self.name) def tell__info(self): print(‘wo is stu‘,end=‘‘) print(‘名字:<%s> 年龄:<%s> 性别:<%s>‘ %(self.name,self.age,self.sex)) clas
分类:其他好文   时间:2018-09-25 21:52:31    阅读次数:162
Answer my question
什么才是 "技能" ? 要知道技能,谁能告诉我机能的反面是什么呢 ? 计算机人机交互领域的科学比尔.巴克斯顿在1995年的一i篇文章中提到"The Op-posite of Skill". Before reading on,think for a moment,tell me what is th ...
分类:其他好文   时间:2018-09-23 00:48:31    阅读次数:198
文件读写,死活记不住的我。。。
打开文件 f=open('test',a+,encoding='utf-8') 文件的各种方法 f.seek(0)#移动文件指针到0,只对读好使,对写不好使 f.read()#读取文件的所有内容 f.tell()#查看文件指针的位置 f.readline()#读取一行内容,在写一个readline从 ...
分类:其他好文   时间:2018-09-22 21:22:07    阅读次数:168
文件修改
# _*_ coding: utf-8 _*_# 须知一:# 硬盘空间无法修改,硬盘中的数据更新都是用新的内容覆盖旧的内容# 内存空间可以修改# with open('a.txt','r+t',encoding='utf-8') as f:# f.seek(4,0)# print(f.tell()) ...
分类:其他好文   时间:2018-09-21 23:16:16    阅读次数:376
001_head.html
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <!-- tell the browser what charset to use --> <meta http-equiv="Refresh" Content="3;Url=h ...
分类:Web程序   时间:2018-09-16 22:59:18    阅读次数:174
ACM-ICPC 2018 焦作赛区网络预赛
A-Magic Mirror Jessie has a magic mirror. Every morning she will ask the mirror: 'Mirror mirror tell me, who is the most beautiful girl in the world?' ...
分类:其他好文   时间:2018-09-16 12:33:36    阅读次数:251
2018ACM/ICPC 焦作网络预选赛-A Magic Mirror
Jessie has a magic mirror. Every morning she will ask the mirror: 'Mirror mirror tell me, who is the most beautiful girl in the world?' If the mirror ...
分类:其他好文   时间:2018-09-15 20:00:54    阅读次数:399
PAT 甲级 1036 Boys vs Girls(20)
https://pintia.cn/problem-sets/994805342720868352/problems/994805453203030016 This time you are asked to tell the difference between the lowest grade ...
分类:其他好文   时间:2018-09-14 22:55:10    阅读次数:175
【POJ 2585】Window Pains
Description . . . and so on . . . Unfortunately, Boudreaux's computer is very unreliable and crashes often. He could easily tell if a crash occurred b ...
分类:Windows程序   时间:2018-09-08 22:38:54    阅读次数:234
578条   上一页 1 ... 13 14 15 16 17 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!