#!/bin/bash/envpythonwhileTrue:user_name=raw_input(‘whatisyourname?‘).strip()iflen(user_name)==0:print"pleaseinputyouruser_name.ifyounot,pleaseregister!"continueelse:file=open(‘/root/passwd‘)state=0#nologinname_n=0#noaccountuser_pass=raw_input(‘whatisyourpa..
分类:
编程语言 时间:
2015-06-29 22:25:00
阅读次数:
229
引入异常处理机制,使得运行的程序发生错误时,不至于崩溃。常见格式:try:
command1
except:
command2当command1执行出错时,就会执行command2。command2通常是自己定义的错误提示或者系统默认的提示。eg:#!/usr/bin/python
while1:
c=raw_input("input‘c‘continue,otherwis..
分类:
编程语言 时间:
2015-06-29 20:38:14
阅读次数:
186
一 python操作串口
首先下载安装串口模块pyserial 。
代码实现:
import serial
ser = serial.Serial('/dev/ttyUSB2', 115200)
print ser.portstr
while True:
str = ser.read(10)
print str
strInput = raw_input(...
分类:
编程语言 时间:
2015-06-29 20:24:54
阅读次数:
156
字符串输入:my_string = raw_input("please input a word:")字符串判断:(1)判断是不是纯字母my_string.isalpha()字符串搜索匹配:(1) rere正则表达式实例一:^[\w_]*$首先\w表示匹配包括下划线的任何单词字符,等价于'[A-Za...
分类:
编程语言 时间:
2015-06-29 00:25:54
阅读次数:
236
stopword=‘‘
str=‘‘
forlineiniter(raw_input,stopword):
str+=line+‘\n‘
L=str.strip().split(‘\n‘)
L_num=[]
forcinL:
L_num.append(int(c))
L_down=L_num[:]
L_up=L_num[:]
L_down.sort(reverse=1)
L_up.sort()
print‘L_down=‘,L_down
print‘L_up=‘,L_up
ifL_num==L_down:
p..
分类:
其他好文 时间:
2015-06-25 01:36:40
阅读次数:
150
stopword=‘‘
str=‘‘
forlineiniter(raw_input,stopword):
str+=line+‘\n‘
L=str.strip().split(‘\n‘)
L_set=set(L)
iflen(L)==len(L_set):
print‘NO‘
else:
print‘YES‘给你一个整数列表L,判断L中是否存在相同的数字,
若存在,输出YES,否则输出NO。
分类:
其他好文 时间:
2015-06-24 19:22:36
阅读次数:
129
1、python中处理异常的方式#coding:utf8filename=raw_input("请输入你要操作的文件")try: f=open(filename) print 'hello'except IOError,msg: print "你指定的文件不存在"except Na...
分类:
编程语言 时间:
2015-06-23 23:12:14
阅读次数:
184
Python的raw_input语句中如果包含中文,在Windows环境CMD中执行时会显示乱码:由于raw_input语句不支持unicode显示,在中文字符串前加u会报错:解决办法:在语句中进行强制的编码转换,格式如下:shuzi=raw_input(unicode(‘请输入日期:‘,‘utf-8‘).encode(‘gbk‘))
分类:
编程语言 时间:
2015-06-23 18:21:46
阅读次数:
371
让用户输入工资输出购物菜单及产品价格计算用户是否可支付输出用户剩余的钱,问用户是否继续购物,如果选择继续,继续进行,直到钱不够为止#coding:UTF-8
importsys
whileTrue:
try:
salary=int(raw_input(‘Pleaseinputyoursalary:‘).strip())
break
except:
print‘Pleaseinput..
分类:
其他好文 时间:
2015-06-22 18:02:40
阅读次数:
172
1、raw_input:的返回值是一个string 对象。2、input:相当于eval(raw_input()),计算出来是什么类型就是什么类型。----------------------------------------------------------------------------...
分类:
编程语言 时间:
2015-06-21 23:34:29
阅读次数:
162