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
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
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
转自:http://blog.csdn.net/sruru/article/details/7790436以前没有深入考虑过raw_input与input函数的区别,所以一直比较困惑,今天测试之后,有了较为深入了解,记录如下>>> user = raw_input("Enter your name:...
分类:
编程语言 时间:
2015-05-04 15:16:53
阅读次数:
140
把字体显示在屏幕的中间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
用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
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
#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
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
#!/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