当前位置:首页 » 编程语言 » pythonisequal

pythonisequal

发布时间: 2022-02-18 01:41:03

① 猜数一把提示偏大偏小python

if __name__ == "__main__":

n = int(input("输入一个整数:"))

if n == 10:

print("you win")

elif n < 10:

print("too small")

else:

print("too big")



代码及运行结果如图所示,望采纳!

② Python 第三题还差最后一行 求大神给个提示

昨天给你私信了,再回答一次。

#!/usr/bin/python
#-*-coding:utf-8-*-
#@File:ToGuess&Students&Interest.py
"""
ToGuess
"""
fromrandomimportrandint

student_list=[]
student_dict={}


defwrite_print_info(anum):
"""录入并打印学生信息"""
globalstudent_list,student_dict
n=0
whilen<anum:
student_name=raw_input(u"Pleaseinputstudent'sname:")
student_dict.setdefault('name',student_name)

student_info=raw_input(u"pleaseinputstudent'sgender):")
student_dict.setdefault('addr',student_info)

student_list.append(student_dict)
n+=1
else:
returnstudent_list


defisequal(num1,num2):
ifnum1<num2:
return'TooSmall'
elifnum1>num2:
return'TooBig'
else:
return'bingo'


if__name__=='__main__':
#题2
num=randint(1,101)
print'GuesswhatIthink?Youhave6chances.'
guesstimes=0
whileguesstimes<6:
ifguesstimes==0:
answer=input('Youranswer:')
else:
answer=input('Guessagain:')
result=isequal(answer,num)
ifresult=='bingo':
printresult
break
else:
printresult
guesstimes+=1
else:
print'GameOver'

print'-------------分隔符-------------'

#题3
nums=int(raw_input(u':'))
students=write_print_info(nums)
printu"{}student'sinformationhasbeeninput:".format(nums)
printstudents

③ 求一个python的路径对比方法,判断路径是否相等,是否包含

#coding=utf-8
'''
Createdon2014-11-17

@author:Neo
'''
#0:equal
#1:path1issubfolderofpath2
#-1:path2issubfolderofpath1
#2:unrelated
defcomparePath(path1,path2):
ifnotpath1ornotpath1:
return2

path1Len=len(path1)
path2Len=len(path2)

ifpath1Len>path2Len:
longPath=path1
shortPath=path2
cmpFator=1
else:
longPath=path2
shortPath=path1
cmpFator=-1

shortPathLen=len(shortPath)
longPathLen=len(longPath)
i=0
j=0
whilei<shortPathLenandj<longPathLen:
c1=shortPath[i]
c2=longPath[j]
ifisSlash(c1):
ifnotisSlash(c2):
return2
whilei<shortPathLenandisSlash(shortPath[i]):
i+=1
whilej<longPathLenandisSlash(longPath[j]):
j+=1
else:
ifc1!=c2:
ifi==shortPathLen:
returncmpFator
else:
return2
i+=1
j+=1

ifi==shortPathLen:
ifj==longPathLen:
return0
whilej<longPathLen:
ifnotisSlash(longPath[j]):
returncmpFator
j+=1
return0
else:
return2

defisSlash(c):
returnc=='/'orc=='\'

printcomparePath('C:/','C:/')
printcomparePath('C:/','C:/Python27')
printcomparePath('C:/Python27','C:')
printcomparePath('C:/Python27','D:')

result:

0
-1
1
2

④ 关于python中字典

  1. extension[ext]+=1 等同于extension[ext] = extension[ext]+1

  2. a=a+1 ; ++a ; a++ ; a+=1; 这四个语句通常是可以通用的,a=a+1简写为a+=1;也是经常遇到的

⑤ python求助

#!/usr/bin/python3
# -*- coding:utf-8 -*-
"""
@author:Storm_ck
@file :to_guess.py
@time :2020/5/25
"""

"""
猜数字游戏
"""

def isequal(num1, num2):
if num1 < num2:
print('Computer Win')
return True
elif num1 > num2:
print('You Win')
return True
else:
print("It's equal")
return False

if __name__ == "__main__":
from random import randint
num = randint(1, 101)
print('Guess what I think?')
bingo = False
t = 1
while bingo is False:
answer = int(input())
bingo = isequal(answer, num)
else:
print("Game Over")

⑥ python常用的断言方式有哪些

(一)assertEqual 和 assertNotEqual
assertEqual:如两个值相等,则pass
assertNotEqual:如两个值不相等,则pass
下面看下具体使用方法
self.driver.find_element_by_xpath("//android.widget.LinearLayout[1]/android.support.v7.app.ActionBar.e[2]").click()#切到超模25tab
sleep(3)
self.assertEqual(self.driver.find_element_by_id('com.boohee.secret:id/tv_title').text,u'超模25','切到超模25tab失败')
(1)这边是通过id(com.boohee.secret:id/tv_title)获取它的text值,与预期“超模25”对比,如相等则pass;不相等则fail。
(2)后面的“切到超模25tab失败”是fail时需要打印的信息,可写可不写。
断言assertNotEqual反着用就可以了。
(二)assertTrue和assertFalse
assertTrue:判断bool值为True,则pass
assertFalse:判断bool值为False,则Pass
下面看下具体使用方法
self.driver.find_element_by_xpath("//android.widget.LinearLayout[1]/android.widget.TextView[1]").click()#点击登录入口
sleep(2)
self.driver.find_element_by_xpath("//android.widget.LinearLayout[1]/android.widget.EditText[1]").send_keys("testq1")#输入用户名
sleep(2)
self.assertTrue(self.find_element_by_id('com.boohee.secret:id/btn_login').is_enabled(),'未输密码登录按钮为不可点状态,Fail')
(1)这边是通过id(com.boohee.secret:id/btn_login)获取它的激活状态,如为True则pass;反之则fail。
(2)后面的“未输密码登录按钮为不可点状态”是fail时需要打印的信息,可写可不写。
断言assertFalse反着用就可以了。
(三)assertIsNone和assertIsNotNone
assertIsNone:不存在,则pass
assertIsNotNone:存在,则pass
下面看下具体使用方法
self.driver.find_element_by_xpath("//android.widget.LinearLayout[1]/android.widget.TextView[1]").click()#点击登录入口
sleep(2)
self.driver.find_element_by_xpath("//android.widget.LinearLayout[1]/android.widget.EditText[1]").send_keys("testq1")#输入用户名
sleep(2)
self.driver.find_element_by_xpath("//android.widget.LinearLayout[2]/android.widget.EditText[1]").send_keys("boohee")#输入密码
sleep(2)
self.driver.find_element_by_xpath("//android.widget.LinearLayout[1]/android.widget.Button[1]").click()#点击登录按钮
sleep(10)
self.assertIsNotNone(self.driver.find_element_by_id('com.boohee.secret:id/tv_edit_profile'),'无编辑资料按钮,登录失败,Fail')
(1)这边是通过寻找id(com.boohee.secret:id/tv_edit_profile)的元素是否存在,如存在则pass;不存在则fail。
(2)后面的“无编辑资料按钮,登录失败,Fail”是fail时需要打印的信息,可写可不写。
断言assertIsNone反着用就可以了。

⑦ 怎样用python算24点

这个参考一下:是csdn的
输入4个数字, 输出所有用加减乘除结果为24的表达式. 代码如下:

def isEqual(num1, num2):
return
abs(num1 - num2) < 1e-5;
# End of isEqual().
http://blog.csdn.net/jq0123/article/details/6092435

⑧ Python 编写 方程

defword_parser(msg):
ret=[]
start=end=0
whileend<len(msg):
ifmsg[end]=='':
ifstart!=end:
ret.append(msg[start:end])
start=end+1
end+=1
ifstart!=end:
ret.append(msg[start:end])
returnret

⑨ python中的asserts.assert_equal()是什么意思呢

这个是做断言的, 一般是用来做条件测试用的,
asserts.assert_equal()
是用于判断两个值知否相等,如果不等抛出异常

⑩ 如何解决的Python类型错误

1.Python异常类

Python是面向对象语言,所以程序抛出的异常也是类。常见的Python异常有以下几个,大家只要大致扫一眼,有个映像,等到编程的时候,相信大家肯定会不只一次跟他们照面(除非你不用Python了)。

异常 描述
NameError 尝试访问一个没有申明的变量
ZeroDivisionError 除数为0
SyntaxError 语法错误
IndexError 索引超出序列范围
KeyError 请求一个不存在的字典关键字
IOError 输入输出错误(比如你要读的文件不存在)
AttributeError 尝试访问未知的对象属性
ValueError 传给函数的参数类型不正确,比如给int()函数传入字符串形
2.捕获异常
Python完整的捕获异常的语句有点像:
复制代码 代码如下:

try:
try_suite
except Exception1,Exception2,...,Argument:
exception_suite
...... #other exception block
else:
no_exceptions_detected_suite
finally:
always_execute_suite

额...是不是很复杂?当然,当我们要捕获异常的时候,并不是必须要按照上面那种格式完全写下来,我们可以丢掉else语句,或者finally语句;甚至不要exception语句,而保留finally语句。额,晕了?好吧,下面,我们就来一一说明啦。
2.1.try...except...语句
try_suite不消我说大家也知道,是我们需要进行捕获异常的代码。而except语句是关键,我们try捕获了代码段try_suite里的异常后,将交给except来处理。
try...except语句最简单的形式如下:
复制代码 代码如下:

try:
try_suite
except:
exception block

上面except子句不跟任何异常和异常参数,所以无论try捕获了任何异常,都将交给except子句的exception block来处理。如果我们要处理特定的异常,比如说,我们只想处理除零异常,如果其他异常出现,就让其抛出不做处理,该怎么办呢?这个时候,我们就要给except子句传入异常参数啦!那个ExceptionN就是我们要给except子句的异常类(请参考异常类那个表格),表示如果捕获到这类异常,就交给这个except子句来处理。比如:
复制代码 代码如下:

try:
try_suite
except Exception:
exception block

举个例子:
复制代码 代码如下:

>>> try:
... res = 2/0
... except ZeroDivisionError:
... print "Error:Divisor must not be zero!"
...
Error:Divisor must not be zero!

看,我们真的捕获到了ZeroDivisionError异常!那如果我想捕获并处理多个异常怎么办呢?有两种办法,一种是给一个except子句传入多个异常类参数,另外一种是写多个except子句,每个子句都传入你想要处理的异常类参数。甚至,这两种用法可以混搭呢!下面我就来举个例子。
复制代码 代码如下:

try:
floatnum = float(raw_input("Please input a float:"))
intnum = int(floatnum)
print 100/intnum
except ZeroDivisionError:
print "Error:you must input a float num which is large or equal then 1!"
except ValueError:
print "Error:you must input a float num!"
[root@Cherish tmp]# python test.py
Please input a float:fjia
Error:you must input a float num!
[root@Cherish tmp]# python test.py
Please input a float:0.9999
Error:you must input a float num which is large or equal then 1!
[root@Cherish tmp]# python test.py
Please input a float:25.091
4

上面的例子大家一看都懂,就不再解释了。只要大家明白,我们的except可以处理一种异常,多种异常,甚至所有异常就可以了。
大家可能注意到了,我们还没解释except子句后面那个Argument是什么东西?别着急,听我一一道来。这个Argument其实是一个异常类的实例(别告诉我你不知到什么是实例),包含了来自异常代码的诊断信息。也就是说,如果你捕获了一个异常,你就可以通过这个异常类的实例来获取更多的关于这个异常的信息。例如:
复制代码 代码如下:

>>> try:
... 1/0
... except ZeroDivisionError,reason:
... pass
...
>>> type(reason)
<type 'exceptions.ZeroDivisionError'>
>>> print reason
integer division or molo by zero
>>> reason
ZeroDivisionError('integer division or molo by zero',)
>>> reason.__class__
<type 'exceptions.ZeroDivisionError'>
>>> reason.__class__.__doc__
'Second argument to a division or molo operation was zero.'
>>> reason.__class__.__name__
'ZeroDivisionError'

上面这个例子,我们捕获了除零异常,但是什么都没做。那个reason就是异常类ZeroDivisionError的实例,通过type就可以看出。
2.2try ... except...else语句
现在我们来说说这个else语句。Python中有很多特殊的else用法,比如用于条件和循环。放到try语句中,其作用其实也差不多:就是当没有检测到异常的时候,则执行else语句。举个例子大家可能更明白些:
复制代码 代码如下:

>>> import syslog
>>> try:
... f = open("/root/test.py")
... except IOError,e:
... syslog.syslog(syslog.LOG_ERR,"%s"%e)
... else:
... syslog.syslog(syslog.LOG_INFO,"no exception caught\n")
...
>>> f.close()

2.3 finally子句
finally子句是无论是否检测到异常,都会执行的一段代码。我们可以丢掉except子句和else子句,单独使用try...finally,也可以配合except等使用。
例如2.2的例子,如果出现其他异常,无法捕获,程序异常退出,那么文件 f 就没有被正常关闭。这不是我们所希望看到的结果,但是如果我们把f.close语句放到finally语句中,无论是否有异常,都会正常关闭这个文件,岂不是很 妙
复制代码 代码如下:

>>> import syslog
>>> try:
... f = open("/root/test.py")
... except IOError,e:
... syslog.syslog(syslog.LOG_ERR,"%s"%e)
... else:
... syslog.syslog(syslog.LOG_INFO,"no exception caught\n")
... finally:
>>> f.close()

大家看到了没,我们上面那个例子竟然用到了try,except,else,finally这四个子句!:-),是不是很有趣?到现在,你就基本上已经学会了如何在Python中捕获常规异常并处理之。
3.两个特殊的处理异常的简便方法
3.1断言(assert)
什么是断言,先看语法:
复制代码 代码如下:

assert expression[,reason]

其中assert是断言的关键字。执行该语句的时候,先判断表达式expression,如果表达式为真,则什么都不做;如果表达式不为真,则抛出异常。reason跟我们之前谈到的异常类的实例一样。不懂?没关系,举例子!最实在!
复制代码 代码如下:

>>> assert len('love') == len('like')
>>> assert 1==1
>>> assert 1==2,"1 is not equal 2!"
Traceback (most recent call last):
File "<stdin>", line 1, in <mole>
AssertionError: 1 is not equal 2!

我们可以看到,如果assert后面的表达式为真,则什么都不做,如果不为真,就会抛出AssertionErro异常,而且我们传进去的字符串会作为异常类的实例的具体信息存在。其实,assert异常也可以被try块捕获:
复制代码 代码如下:

>>> try:
... assert 1 == 2 , "1 is not equal 2!"
... except AssertionError,reason:
... print "%s:%s"%(reason.__class__.__name__,reason)
...
AssertionError:1 is not equal 2!
>>> type(reason)
<type 'exceptions.AssertionError'>

3.2.上下文管理(with语句)
如果你使用try,except,finally代码仅仅是为了保证共享资源(如文件,数据)的唯一分配,并在任务结束后释放它,那么你就有福了!这个with语句可以让你从try,except,finally中解放出来!语法如下:
复制代码 代码如下:

with context_expr [as var]:
with_suite

是不是不明白?很正常,举个例子来!
复制代码 代码如下:

>>> with open('/root/test.py') as f:
... for line in f:
... print line

上面这几行代码干了什么?
(1)打开文件/root/test.py
(2)将文件对象赋值给 f
(3)将文件所有行输出
(4)无论代码中是否出现异常,Python都会为我们关闭这个文件,我们不需要关心这些细节。
这下,是不是明白了,使用with语句来使用这些共享资源,我们不用担心会因为某种原因而没有释放他。但并不是所有的对象都可以使用with语句,只有支持上下文管理协议(context management protocol)的对象才可以,那哪些对象支持该协议呢?如下表:
file
decimal.Context
thread.LockType
threading.Lock
threading.RLock
threading.Condition
threading.Semaphore
threading.BoundedSemaphore
至于什么是上下文管理协议,如果你不只关心怎么用with,以及哪些对象可以使用with,那么我们就不比太关心这个问题:)
4.抛出异常(raise)
如果我们想要在自己编写的程序中主动抛出异常,该怎么办呢?raise语句可以帮助我们达到目的。其基本语法如下:
复制代码 代码如下:

raise [SomeException [, args [,traceback]]

第一个参数,SomeException必须是一个异常类,或异常类的实例
第二个参数是传递给SomeException的参数,必须是一个元组。这个参数用来传递关于这个异常的有用信息。
第三个参数traceback很少用,主要是用来提供一个跟中记录对象(traceback)
下面我们就来举几个例子。
复制代码 代码如下:

>>> raise NameError
Traceback (most recent call last):
File "<stdin>", line 1, in <mole>
NameError
>>> raise NameError() #异常类的实例
Traceback (most recent call last):
File "<stdin>", line 1, in <mole>
NameError
>>> raise NameError,("There is a name error","in test.py")
Traceback (most recent call last):
File "<stdin>", line 1, in <mole>
>>> raise NameError("There is a name error","in test.py") #注意跟上面一个例子的区别
Traceback (most recent call last):
File "<stdin>", line 1, in <mole>
NameError: ('There is a name error', 'in test.py')
>>> raise NameError,NameError("There is a name error","in test.py") #注意跟上面一个例子的区别
Traceback (most recent call last):
File "<stdin>", line 1, in <mole>
NameError: ('There is a name error', 'in test.py')

其实,我们最常用的还是,只传入第一个参数用来指出异常类型,最多再传入一个元组,用来给出说明信息。如上面第三个例子。
5.异常和sys模块
另一种获取异常信息的途径是通过sys模块中的exc_info()函数。该函数回返回一个三元组:(异常类,异常类的实例,跟中记录对象)
复制代码 代码如下:

>>> try:
... 1/0
... except:
... import sys
... tuple = sys.exc_info()
...
>>> print tuple
(<type 'exceptions.ZeroDivisionError'>, ZeroDivisionError('integer division or molo by zero',), <traceback object at 0x7f538a318b48>)
>>> for i in tuple:
... print i
...
<type 'exceptions.ZeroDivisionError'> #异常类
integer division or molo by zero #异常类的实例
<traceback object at 0x7f538a318b48> #跟踪记录对象

热点内容
在c语言编译器编辑程序视频 发布:2025-01-07 07:33:22 浏览:283
不卡顿机顶盒需什么配置 发布:2025-01-07 07:33:19 浏览:777
群晖读写缓存掉电 发布:2025-01-07 07:32:42 浏览:236
玩崩坏3安卓用什么手机好 发布:2025-01-07 07:31:53 浏览:3
大数进位算法 发布:2025-01-07 07:26:23 浏览:81
一闪安卓版在哪里下 发布:2025-01-07 07:26:18 浏览:943
哈佛第三代最高配有什么配置 发布:2025-01-07 07:19:09 浏览:408
电脑配置不高用ps什么版本 发布:2025-01-07 07:16:52 浏览:187
没用的车有哪些配置 发布:2025-01-07 07:16:50 浏览:675
电脑打开服务器卡的很 发布:2025-01-07 07:16:45 浏览:981