输入-------------处理------------------------------输出
变量赋值 算术运算(+、-、*、/) 打印输出
输入语句 逻辑运算(如:判断字符串大小) 写入文件(用户名:ip:时间)
算法处理 写入数据库
eg1:
>>> x=12 --------|
>>> y=13---------|----输入
>>> z=x+y-------------处理
>>> print (z)---------输出
25
eg2:
>>> str1=raw_input("plz input a string:")----------输入 raw_put函数(参数是提示字符)
plz input a string:www.baidu.com
>>> print (str1)
www.baidu.com
>>> n=len(str1)------------------------------------处理
>>> print n----------------------------------------输出
13
备注:
1,raw_put输入语句函数,括号中的参数是提示字符(可以省略)
2,len()统计字符串的长度,有多少个字符
时间: 2024-10-19 03:21:29