E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
raw_input
python基础教程共60课-第34课break
whileTrue:a=
raw_input
()ifa=='EOF':break上面的程序不停接受用户输入。当用户输入一行“EOF”时,程序结束。foriinrange
gdut2015go
·
2015-12-13 09:00
python
python小程序5
脚本1分析:python的列表本身就有自己的sort排序,把数值放放列表,直接排序即可L=[]fornin'xyz':print"input",n,":"num=int(
raw_input
())L.append
lijixing8
·
2015-12-13 00:37
python小程序5
python
python小程序5
脚本1分析:python的列表本身就有自己的sort排序,把数值放放列表,直接排序即可L=[]fornin'xyz': print"input",n,":" num=int(
raw_input
())
lijixing8
·
2015-12-13 00:37
python小程序5
python从控制台输入
python有多种从控制台输入方式:1.使用input()、
raw_input
()函数这两个函数在python的内置库里。
BrownWong
·
2015-12-09 18:15
python
使用Python实现简单购物车
,5800),('Bike',800),('Book',45),('Coffee',35),('Solo2Beats',1590),('MX4',1999),]#定义一个商品列表budget=int(
raw_input
xiajiesina
·
2015-12-09 12:12
python
购物车
input与
raw_input
的区别
以前没有深入考虑过
raw_input
与input函数的区别,所以一直比较困惑,今天测试之后,有了较为深入了解,记录如下>>>user=
raw_input
("Enteryourname:")Enteryourname
yhb315279058
·
2015-12-08 23:00
python
初步的百度爬虫
frombs4importBeautifulSoup importurllib2 importurllib importre importurlparse param=
raw_input
(
$_elliott
·
2015-12-06 21:00
python读写文件脚本
输入文件名与文件内容并创建这个文件:(参考python核心编程P52)#/usr/bin/envpython importos ls=os.linesep whileTrue: fname=
raw_input
u013013910
·
2015-12-06 15:00
python
脚本
《python爬虫实战》:爬取图片
例子:爬取糗事百科上的图片实现代码如下:#encoding=utf-8 #功能:爬取糗事百科上面的图片 importurllib2 importurllib importre #
raw_input
是python
u010412719
·
2015-12-05 22:00
python
函数
爬虫
图片
糗事百科
Python练习程序(一)Python用户交互和流程控制
/usr/bin/env python #coding=utf-8 name =
raw_input
("请输入你的用户名:") while name !
fgf01
·
2015-12-02 18:27
python
《Python基础教程》第二版代码清单2-3更正
于是自己修改了一下,主要是盒子里的空格数计算不对,还有就是如果按照原书的box_width的话,盒子会显得非常拥挤,于是我加大了盒子的宽度,代码如下#以正确的宽度在一个居中的“盒子”内打印一个句子 sentence=
raw_input
u010099080
·
2015-11-28 18:00
python
Python练习程序(一)用户认证后,联系人信息查询
/usr/bin/envpython #coding=utf-8 name=
raw_input
("请输入你的用户名:") whilename!
fgf00
·
2015-11-27 16:00
python
python 用户交互
#coding:utf-8 name =
raw_input
('what is your name?:') age =
raw_input
('how old are you?
青春掌柜
·
2015-11-27 12:19
python
用户
姓名
Cheng
python 用户交互
#coding:utf-8 name =
raw_input
('what is your name?:') age =
raw_input
('how old are you?
青春掌柜
·
2015-11-27 12:19
python
用户
姓名
Cheng
Python实现简单的用户登录
python# -*- coding:utf-8 -*-f = file('user.txt','r')Lock_User = []count = 0i = 0while True: User =
raw_input
329984300
·
2015-11-24 15:55
用户名
python
用户登录
Python基础
python中字典的练习
/bin/envpython#Filename:addressbook.pyadbook={'alice':100,'bob':101,'chanel':102}whileTrue: choice=
raw_input
wtwb2010
·
2015-11-21 12:34
python
练习
字典
python中字典的练习
usr/bin/envpython#Filename:addressbook.pyadbook={'alice':100,'bob':101,'chanel':102}whileTrue:choice=
raw_input
wtwb2010
·
2015-11-21 12:34
python
字典
练习
python中字典的练习
/bin/envpython#Filename:addressbook.pyadbook={'alice':100,'bob':101,'chanel':102}whileTrue: choice=
raw_input
wtwb2010
·
2015-11-21 12:34
python
练习
字典
python之倒序字符串
/usr/bin/env python s =
raw_input
("Please enter a string:") alist = list(s) alist.reverse() kong =
醉我红尘
·
2015-11-20 18:43
python;倒序
python之倒序字符串
/usr/bin/env python s =
raw_input
("Please enter a string:") alist = list(s) alist.reverse() kong =
醉我红尘
·
2015-11-20 18:43
python;倒序
用python简单实现将整数转化为英文字符串
/bin/envpython importstringwhileTrue: number=int(
raw_input
('pleaseinputanumber:').strip()) ifnumber
代码phoenix
·
2015-11-20 17:00
python之-if语句
/usr/bin/python # Filename: if.py number = 23 guess = int(
raw_input
('Enter an integer : ')) if guess
千_面
·
2015-11-16 16:33
python
if
控制流
python之-if语句
/usr/bin/python # Filename: if.py number = 23 guess = int(
raw_input
('Enter an integer : ')) if guess
千_面
·
2015-11-16 16:33
python
if
控制流
python 第三天 编写文件查询、添加、删除
需求如下:输出: 1、获取ha记录 2、增加ha记录 3、删除ha记录num =
raw_input
('请输入操作序号:')如果用户输入的 1: read =
raw_input
fwbqq
·
2015-11-14 11:55
python
文件处理
python 第三天 编写文件查询、添加、删除
需求如下:输出: 1、获取ha记录 2、增加ha记录 3、删除ha记录num =
raw_input
('请输入操作序号:')如果用户输入的 1: read =
raw_input
fwbqq
·
2015-11-14 11:55
python
文件处理
Python输出文件由线解释和扩展的具体内容
/usr/bin/python2.7 try: filename =
raw_input
(‘please input filename:’) for
·
2015-11-13 18:15
python
python基础学习笔记(二)
>>> #获得用户名: >>> user_name =
raw_input
("what is your name?
·
2015-11-13 17:20
python
Python概述:C++程序员眼中的Python
避免运行脚本闪过可以添加
raw_input
()。这相当于getline。 在命令行中可以直接键入filename.py来运行脚本
·
2015-11-13 15:40
python
实现简单购物车功能
Mac','Coffee','Book','Bus'] price=['10000', '50', '500', '2000'] shop_list=[] #购物车列表 gongzi=int(
raw_input
329984300
·
2015-11-13 14:11
python
购物车
实现简单购物车功能
Mac','Coffee','Book','Bus'] price=['10000', '50', '500', '2000'] shop_list=[] #购物车列表 gongzi=int(
raw_input
329984300
·
2015-11-13 14:11
python
购物车
实现简单购物车功能
=['Mac','Coffee','Book','Bus']price=['10000', '50', '500', '2000']shop_list=[] #购物车列表gongzi=int(
raw_input
329984300
·
2015-11-13 14:11
python
购物车
Python基础
Python中文乱码问题
/usr/bin/env python name =
raw_input
('请输入您的姓名:') print 'Hello,', name 运行时出错: y@y:~/my_note/
·
2015-11-13 11:10
python
Python基础 3----文件和网络
输出数据到标准的输出
raw_input
·
2015-11-13 09:53
python
Python入门程序:文件操作和IO异常
#file.py # #by ggt def main(): try: filename =
raw_input
('Enter file name')
·
2015-11-13 04:59
python
[原]My first Python
我的第一个Python程序: print 'hello world'
raw_input
("print any key to continue...
·
2015-11-13 04:52
python
[原]Python 简单异常处理
s=
raw_input
("Input your age:") if s =="": raise Exception("Input must no
·
2015-11-13 04:51
python
Python基础 3----文件和网络
输出数据到标准的输出
raw_input
·
2015-11-13 00:50
python
python小练习之换零钱
/usr/bin/env python r = int(
raw_input
('please enter your m
醉我红尘
·
2015-11-12 23:56
python
python小练习之换零钱
/usr/bin/env python r = int(
raw_input
('please enter your m
醉我红尘
·
2015-11-12 23:56
python
python小练习之换零钱
/usr/bin/env pythonr = int(
raw_input
('please enter your mo
醉我红尘
·
2015-11-12 23:56
python
python
《Python核心编程》 第六章 序列 - 课后习题
答:成员关系操作符(in、not in) import string m_string =
raw_input
('请输入大字符串:') s_string =
raw_input
('请输入子字符串
·
2015-11-12 21:22
python
《Python基础教程(第二版)》学习笔记 -> 第五章 条件、循环 和 其他语句
nbsp;0 "" () [] {} 条件执行和if语句 name =
raw_input
·
2015-11-12 21:55
python
python学习笔记
对于后一种情况,程序中类似于调用 input() 和
raw_input
()这 样的输入请求,来自于确定的文件。因为在解析器开始执行之前,文件已经完全读入,所以程序指向文件尾。
·
2015-11-12 16:09
python
Python学习笔记——String、Sequences
一、input()与
raw_input
()的区别 代码 1 >>> buck = input
·
2015-11-12 13:54
sequence
python2 随机数列生成器
#filename:randNumber.py import random while True: try: row=int(
raw_input
('Enter the rows
·
2015-11-12 13:12
python
OJ python答题结果"返回非零"
在python2中用了input(),或在python3中用了
raw_input
() 如果是python2提交,就要用
raw_input
(); 如果是python3提交,就要用input()
·
2015-11-12 11:11
python
python判断是否是闰年
/usr/bin/env python ye = int(
raw_input
('Please enter the year:')) if ye % 100 == 0: if (ye/100
醉我红尘
·
2015-11-11 23:53
python
python判断是否是闰年
/usr/bin/env python ye = int(
raw_input
('Please enter the year:')) if ye % 100 == 0: if (ye/100
醉我红尘
·
2015-11-11 23:53
python
str()与repr(),input()与
raw_input
()
>>> print str(1000L) 1000 >>> print str('hello,world') hello,world >>> print str(1000L) 1000 >>> print repr('hello,world') 'hello,world' >>> print
·
2015-11-11 18:43
input
《Python核心编程》部分代码习题实践(持续更新)
python 'makeTextFile.py' import os ls = os.linesep #get File name while True: fname =
raw_input
·
2015-11-11 16:24
python
上一页
24
25
26
27
28
29
30
31
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他