码迷,mamicode.com
首页 >  
搜索关键字:raw_input    ( 787个结果
python 处理电子表格
importxlrd importxlwt ##输入 input_ip=raw_input("请输入一个ip:") input_count_values=int(raw_input("请输入-1or+1:")) #新建电子表格 wbk=xlwt.Workbook(encoding=‘utf-8‘,style_compression=0) new_sheet1=wbk.add_sheet(‘Sheet1‘,cell_overwrite_ok=True) style=xlwt...
分类:编程语言   时间:2015-05-06 18:08:44    阅读次数:209
python 处理电子表格(前编)
importxlrdinput_ip=raw_input("请输入一个ip:")input_count_values=int(raw_input("请输入-1or+1:"))data=xlrd.open_workbook(‘d:\\1.xls‘)table_Sheet1=data.sheet_by_name(u‘Sheet1‘)Sheet1_nrows=table_Sheet1.nrowsSheet1_ncols=table_Sheet1.ncols#printtype(table_She..
分类:编程语言   时间:2015-05-06 18:07:26    阅读次数:165
今日哈工大刷推荐python脚本
import httplibimport randomimport timeimport urllib2import readdress = raw_input("Please input the website address")count = int(raw_input("Please inpu...
分类:编程语言   时间:2015-05-04 21:37:52    阅读次数:165
python input 与raw_input函数的区别
转自:http://blog.csdn.net/sruru/article/details/7790436以前没有深入考虑过raw_input与input函数的区别,所以一直比较困惑,今天测试之后,有了较为深入了解,记录如下>>> user = raw_input("Enter your name:...
分类:编程语言   时间:2015-05-04 15:16:53    阅读次数:140
PYTHON之显示居中
把字体显示在屏幕的中间sentence=raw_input("Sentence:") screen_width=80text_width=len(sentence)box_width=text_width+6left_margin=(screen_width-box_width)//2 printprint‘‘*left_margin+‘+‘+‘-‘*(box_width)+‘+‘print‘‘*(left_margin+2)+‘|‘+‘‘*text_width+‘|‘print‘‘*(..
分类:编程语言   时间:2015-04-28 02:04:15    阅读次数:820
python 输入输出,注释的使用
用EidtPlus新建一个py文件.代码如下(不能用notepad)#-*- coding:cp936 -*- print 'hello, python' print 'first 1', 'second 2' print '100 + 200 =', 100+200 #用户输入 """ 用户输入 """ name = raw_input() print '输入的数据:', name name =...
分类:编程语言   时间:2015-04-26 01:20:27    阅读次数:139
Corepython第九章习题
9-6.文件比较.写一个比较两个文本文件的程序,如果不同,给出第一个不同处的行号和列号. 1 FA=raw_input("please input 1st file's path:") 2 FB=raw_input("please input 2nd file's path:") 3 file_a=...
分类:编程语言   时间:2015-04-21 22:11:29    阅读次数:175
pyzmq简单的在线聊天室
#encoding=utf-8#客户端import zmqc = zmq.Context()s = c.socket(zmq.REQ)s.connect('tcp://127.0.0.1:10001')while True: s.send(raw_input('客户端输入:'), copy=F...
分类:其他好文   时间:2015-04-21 22:05:41    阅读次数:168
corepython第八章习题
8-2.循环。编写一个程序,让用户输入3个数字:(f)rom,(t)o和(i)ncrement。以i为步长,从f开始计数到t,包括f和t。例如,如果输入的是f==2,t==26,i==4,程序将输出2,6,10,14,18,22,26。1 def xh():2 f=int(raw_input...
分类:编程语言   时间:2015-04-20 16:45:08    阅读次数:149
一个简单的python读写文件脚本
#!/usr/bin/env python 'makeFile.py -- create a file' import os ls = os.linesep # get filename while True: fname = raw_input('Input an unused file name >') if os.path.exists(fname): print "ERROR...
分类:编程语言   时间:2015-04-17 15:52:14    阅读次数:161
787条   上一页 1 ... 66 67 68 69 70 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!