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
Funny String
1 def main(): 2 3 t = int(
raw_input
()) 4 5 for _ in xrange(t): 6 s =
raw_input
·
2015-10-31 19:42
String
Strange Grid
1 def main(): 2 3 r,c = map(int,
raw_input
().split(' ')) 4 5 if r % 2 !
·
2015-10-31 19:42
grid
Python 使用for代替in判断一个元素属于某个集合
string1 =
raw_input
("输入in之前的字符:")string2 =
raw_input
("输入in之后的字符:")x = ''if len(string1
·
2015-10-31 18:14
python
Python 的文件读写
写文件 import osls=os.linesep#get filenamefname=
raw_input
('Enter file name: ')if os.path.exists(fname)
·
2015-10-31 16:04
python
pyzmq简单的在线聊天室
zmq.Context() s = c.socket(zmq.REQ) s.connect('tcp://127.0.0.1:10001') while True: s.send(
raw_input
·
2015-10-31 16:42
聊天室
python 模拟ajax查询社工库...
#coding:utf8 import urllib2,urllib from BeautifulSoup import BeautifulSoup queryword=
raw_input
(u
·
2015-10-31 16:37
python
Song of Pi
1 def main(): 2 pi = '31415926535897932384626433833' # 预先给出需要比较的值 3 t = int(
raw_input
())
·
2015-10-31 14:53
on
Max Min
1 def main(): 2 n = int(
raw_input
()) 3 k = int(
raw_input
()) 4 5 k_arr = [] 6
·
2015-10-31 14:52
max
Sherlock and Squares
sherlock-and-squares 1 from math import sqrt # 用什么,引什么,减少浪费和错误可能性 2 3 4 def main(): 5 t = int(
raw_input
·
2015-10-31 14:51
Lock
Taum and B'day
//自己 1 def main(): 2 t = int(
raw_input
()) 3 for _ in range(t): 4 units = 0
·
2015-10-31 14:50
a
Project Euler #80: Square root digital expansion
1 from decimal import getcontext, Decimal 2 3 4 def main(): 5 n = int(
raw_input
()) 6
·
2015-10-31 14:48
project
Manasa and Stones
1 from __future__ import print_function 2 3 4 def main(): 5 t = int(
raw_input
()) 6
·
2015-10-31 14:48
man
Halloween party
https://www.hackerrank.com/challenges/halloween-party 1 def main(): 2 t = int(
raw_input
·
2015-10-31 14:47
part
Cut the sticks
1 def main(): 2 n = int(
raw_input
()) 3 arr = map(int,
raw_input
().strip().split()) 4
·
2015-10-31 14:46
cut
Angry Professor
1 def main(): 2 t = int(
raw_input
()) 3 for _ in range(t): 4 n, k = map(int,
raw_input
·
2015-10-31 14:46
SSO
Lonely Integer
https://www.hackerrank.com/challenges/lonely-integer 1 def main(): 2 n = int(
raw_input
())
·
2015-10-31 14:45
Integer
Service Lane
Link https://www.hackerrank.com/challenges/service-lane def main(): n, t = map(int,
raw_input
·
2015-10-31 14:44
service
B'day Gift
1 def main(): 2 n = int(
raw_input
()) 3 sum = 0 4 for i in range(n): 5 sum
·
2015-10-31 14:43
gif
Double Strings Solved Problem code: DOUBLE
1 # Fuking silly, OTZ.... 2 3 import sys 4 5 6 def main(): 7 n = int(
raw_input
())
·
2015-10-31 14:42
String
Python 文件批量改名
osimport sys path = 'E:\\English\\'os.chdir(path)fileList = os.listdir(path)print fileList confirm =
raw_input
·
2015-10-31 12:54
python
python 核心编程第5章(习题)
#coding:utf8 a =
raw_input
() a = int(a) if (a > 100) or (a < 0): print "输入错误,请输入0~100
·
2015-10-31 11:55
python
Python学习(3)——if语句
score =
raw_input
("score:") score=int(score) if(score >= 90) and (score <= 100):
·
2015-10-31 11:54
python
Core Python Programming笔记,Note
> logfile, 'fatail error: invalid arguments' >>> logfile.close() >>> user=
raw_input
·
2015-10-31 11:24
programming
三种排序算法python源码——冒泡排序、插入排序、选择排序
python源码如下: def bubble_sort( ): str_array =
raw_input
(&quo
·
2015-10-31 11:56
python
Python
raw_input
读取输入值
Python
raw_input
读取输入值 下面介绍了python
raw_input
的用法,使用
raw_input
能够很方便的丛控制台读入数据。
·
2015-10-31 11:13
python
hackerrank---Find a string
题目链接 在字符串a中查找字符串b出现的次数...貌似不可以用a.count() 附上代码: 1 a =
raw_input
().strip() 2 b =
raw_input
().strip(
·
2015-10-31 10:36
String
hackerrank---Sets - Symmetric Difference
题目链接 集合操作 附上代码: 1 M = int(input()) 2 m = set(map(int,
raw_input
().strip().split())) 3 N = int(input
·
2015-10-31 10:36
rank
用python计算top命令中某个进程的CPU,Memory使用情况
topfile=
raw_input
("please input the topfile path :") try: &nbs
·
2015-10-31 10:06
python
《Python核心编程》第二版第六章练习题答案
-*- ''' Created on 2012-7-24 @author: wanglei ''' #/usr/bin/python #Filename:6-3.py astr=
raw_input
·
2015-10-31 09:21
python
raw_input
函数
raw_input
函数 接受“文本输入”字符串并打印到屏幕上: 1 >>> user=
raw_input
('enter username:') enter username:root
·
2015-10-31 09:18
input
python基础语法
---恢复内容开始--- 从用户得到数据输入的方法是使用
raw_input
()内建函数;它读取标准输入,并将读取的数据赋值给指定的变量。
·
2015-10-31 09:35
python
PAT 1065. A+B and C (64bit) (20)
/pat-a-practise/1065 偷懒了 1 T = input() 2 for i in xrange(1, T + 1): 3 a, b, c = map(long,
raw_input
·
2015-10-31 09:10
bit
[Python] 控制台输入密码的方法
1.
raw_input
() : pwd =
raw_input
( ' password: ' ) print pwd # password
·
2015-10-31 08:44
python
已解决】Sublime中运行带input或
raw_input
的Python代码出错:EOFError: EOF when reading a line
【问题】 在折腾: 【已解决】Sublime Text 2中运行Python程序出错:The system cannot find the file specified 的过程中,虽然解决了找不到python.exe的问题,但是又出现下面这个错误: Demo print in Sublime Text 2Traceback (most recent call last): No
·
2015-10-30 17:50
sublime
python初步要点
2、
raw_input
('str')可以用于从命令行接受输入。
·
2015-10-30 16:20
python
Python:习题
elif d < 0: print 'negative' else: print 'zero' while True: x =
raw_input
·
2015-10-30 14:05
python
Python 绝对简明手册
基本语法 2.1. if / elif / else x=int(
raw_input
("Please enter an integ
·
2015-10-30 14:53
python
codehouse
1 1 # 整数部分十进制转二进制 2 2 3 3 num = int(
raw_input
(">>>")) 4 4 5
·
2015-10-30 14:05
code
python核心编程笔记——Chapter5
好吧,开始第五章习题: 5-2.又是老调重谈,
raw_input
这个函数真是非常麻烦,返回是str类型,没办法,只能在函数里面使用int内建。(就只是一道简单的两数相乘,哭了) 1 #!
·
2015-10-30 13:00
python
python中的“switch/case”语句
:'Zero', 1:'one', 2:'two' } returnswitcher.get(argument,'nothing') if__name__=='__main__': arg=int(
raw_input
LinuxerRky
·
2015-10-29 17:00
Python 中的input(),
raw_input
()与zip()
.Codea=input() printa3.Input/OuputInput: 1+2 Output 32.raw_input()1.功能从控制台读取数据,保留的是最原始的输入的数据2.Codea=
raw_input
u013790563
·
2015-10-29 14:00
zip
input
raw-input
python 学习笔记(03)
/usr/bin/envpythona=10b=int(
raw_input
("EnterAbynumberb:
sql031625
·
2015-10-28 19:38
python学习
笨方法学Python,Lesson 35, 36
choice =
raw_input
("> ") if "0" in choice or "1" in choice: how_mu
好好先生_1028
·
2015-10-28 17:00
python 如何在输出字段中调用变量
/usr/bin/pythonname=
raw_input
('pleaseinputname:')age=
raw_input
('pleaseinputage:')--------------------
梁佳鹏
·
2015-10-28 02:28
python
如何在输出字段中调用变量
python 如何在输出字段中调用变量
/usr/bin/pythonname=
raw_input
('pleaseinputname:')age=
raw_input
('pleaseinputage:')--------------------
梁佳鹏
·
2015-10-28 02:28
python
如何在输出字段中调用变量
raw_input
如何设定读入的数据为数值类型
/usr/bin/pythonname=
raw_input
('pleaseinputname:')//定义年龄只能使用int类型数值age=int(
raw_input
('pleaseinputage:'
梁佳鹏
·
2015-10-28 02:43
raw_input
如何设定读入的数据为数值类型
/usr/bin/pythonname=
raw_input
('pleaseinputname:')//定义年龄只能使用int类型数值age=int(
raw_input
('pleaseinputage:'
梁佳鹏
·
2015-10-28 02:43
raw_input
如何设定读入的数据为数值类型
/usr/bin/pythonname=
raw_input
('pleaseinputname:')//定义年龄只能使用int类型数值age=int(
raw_input
('pleaseinputage:'
梁佳鹏
·
2015-10-28 02:43
python 中while 使用else实现双分支循环判断
/usr/bin/envpythonname=
raw_input
("pleaseyourname:")whilename=="bbs.52itw.com": print"nameok"
梁佳鹏
·
2015-10-28 02:43
python
中while
使用else实现双分支循环判断
python 中while 使用else实现双分支循环判断
/usr/bin/envpythonname=
raw_input
("pleaseyourname:")whilename=="bbs.52itw.com": print"nameok"
梁佳鹏
·
2015-10-28 02:43
python
中while
使用else实现双分支循环判断
上一页
26
27
28
29
30
31
32
33
下一页
按字母分类:
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
其他