python嵩天课后题及答案_python程序设计基础(嵩天)第五章课后习题部分答案

第五章

p151

5.2:实现isodd()函数,参数为整数,如果参数为奇数,返回true,否则返回false。

def isodd(s):

x=eval(s)

if(x%2==0):

return False

else:

return True

x=input("请输入一个整数:")

print(isodd(x))

运行结果:

python嵩天课后题及答案_python程序设计基础(嵩天)第五章课后习题部分答案_第1张图片

python嵩天课后题及答案_python程序设计基础(嵩天)第五章课后习题部分答案_第2张图片

/

题5.3:实现isnum()函数,参数为一个字符串,如果这个字符串属于整数、浮点数或复数的表示,则返回true,否则返回false。

def isnum(s):

try:

x=eval(s)

if((type(x)==int)|(type(x)==float)|(type(x)==complex)):

return True

else:

你可能感兴趣的:(python嵩天课后题及答案)