描述:一个英文句子仅由单词、逗号、句号、空格组成。要求过滤句子中的重复单词,例如:输入where there is a will, there is a way.输出:where there is a will waystr = raw_input("");a = []str = str.repla...
分类:
编程语言 时间:
2014-09-24 22:05:17
阅读次数:
473
A题模拟 1 T = int(input()) 2 while T: 3 T -= 1 4 s = raw_input() 5 n = len(s) 6 res, pre = 0, 0 7 for i in xrange(1, n): 8 if...
分类:
其他好文 时间:
2014-09-17 15:00:32
阅读次数:
293
需求:gz=int(raw_input(‘请输入您收入/月:‘))
F=file(‘commodity.txt‘)
shop_list=[]
product=F.readline()
products=product.split()
products_prices=F.readline()
prices=[int(i)foriinproducts_prices.split()]
min_prices=min(prices)
whileTrue:
print‘本商店提供..
分类:
其他好文 时间:
2014-09-10 02:56:01
阅读次数:
249
执行脚本absolute.py # print absolutle values of an integera = raw_input()if a>0: print aelse: print -a输入-100得到的结果为C:\Users\5 one>python absolute.py-1...
分类:
编程语言 时间:
2014-09-09 23:00:19
阅读次数:
265
最近才开始学习Python语言,??在学习视频中发现讲述的函数知识觉得非常不错,所以就写了第一篇Python学习的文章分享给大家.主要内容:1.Python安装与基本输入输出,print()函数和raw_input()函数简单用法.2.讲解函数的基本知识:(1).系统提供内部函数(2).第三方提供函数库:讲解如何安装httplib2第三方函数库,再做了个简单的网页爬虫例子(3).用户自定义函数.希望文章对大家有所帮助,才开始学习python知识,如果文章中有错误或不足之处,还请海涵,也希望大家提出意见与君共...
分类:
编程语言 时间:
2014-09-08 05:23:46
阅读次数:
537
#decoding=utf-8‘‘‘编写可供用户查询的员工信息表!1|用户认证IDNamedepartmentphone查询关键字:姓名‘‘‘importlinecache
input01=raw_input("plswriteyourname:")
i=1
name=[]
count=len(open(‘user.txt‘,‘rU‘).readlines())
whilei<=count:
fline=linecache.getline("user..
分类:
编程语言 时间:
2014-09-05 03:20:01
阅读次数:
203
要求:1、接受用户输入;2、判断用户是否是alex,如果不是重新接受输入;3、判断用户alex的密码是否是11111,若不是重新输入;代码如下:input=raw_input("yourname:")
whileTrue:
ifinput==‘alex‘:
print"welcomealex"
password=raw_input("yourpassword:")
p=‘111111‘
while..
分类:
编程语言 时间:
2014-09-03 02:45:16
阅读次数:
223
控制流语句if、while、for、break、continue以上从最终作用效果来讲,同学过的其他语言没有什么不同。需要注意的只是语法,而Python 在语法上是如此让人赞叹和喜欢啊。控制流语句的使用 1 while True: 2 input_number = int(raw_input...
分类:
编程语言 时间:
2014-08-31 00:22:00
阅读次数:
344
1.for循环
#!/usr/bin/evnpython
#Filename:for.py
foriinrange(1,5):
printi
else:
print‘Theforloopisover‘
2.break语句
#!/usr/bin/evnpython
#filename:break.py
whileTrue:
s=raw_input(‘Entersomething:‘)
ifs==‘quit‘:
break
print‘Lengthofthestringis‘,len(s)
prin..
分类:
编程语言 时间:
2014-08-29 03:05:27
阅读次数:
230
#-*-coding:utf-8-*-importosimportsysimporturllib2importpygameimportreimportsocketimportsubprocess#输入要测试的site值print"Hello"printpygame.versite=raw_input("PlsInputYourSite:")req=urllib2.Request(‘http://192.168.1.88/cc.txt‘)fd=urllib2.urlopen(req)#http:/..
分类:
编程语言 时间:
2014-08-26 19:52:57
阅读次数:
390