python代码运行,为何后面会显示一个none
#!/usr/bin/envpythonimportmathdefSquare_and_cube(length):print"Theareaofthesquareis%d...
#!/usr/bin/env python
import math
def Square_and_cube(length):
print "The area of the square is %d"%pow(length,2)
print "The volume of a cube is %d"%pow(length,3)
def Circle_and_sphere(length):
print "The area of the Circle is %d"%pow(length,2)*math.pi
print "The volume of a sphere is %d"%pow(length,3)*math.pi*4/3
if __name__=="__main__":
print """
(1)Calculate square and cube
(2)Calculate Circle and sphere
(3)exit()
"""
length=input("please enter the length:")
choice=input("please make the choice number:")
if choice==1:
print Square_and_cube(length)
if choice==2:
print Circle_and_sphere(length)
if choice==3:
exit() 展开
import math
def Square_and_cube(length):
print "The area of the square is %d"%pow(length,2)
print "The volume of a cube is %d"%pow(length,3)
def Circle_and_sphere(length):
print "The area of the Circle is %d"%pow(length,2)*math.pi
print "The volume of a sphere is %d"%pow(length,3)*math.pi*4/3
if __name__=="__main__":
print """
(1)Calculate square and cube
(2)Calculate Circle and sphere
(3)exit()
"""
length=input("please enter the length:")
choice=input("please make the choice number:")
if choice==1:
print Square_and_cube(length)
if choice==2:
print Circle_and_sphere(length)
if choice==3:
exit() 展开
3个回答
展开全部
这是因为,#如果直接调用,def里面就加print,如果调用的时候用print,则用return返回值,如下:def name2number(name):
if name == 'rock':
return 0
elif name == 'paper':
return 1
elif name == 'scissor':
return 2
else:
print('wrong name')
print(name2number("rock"))
扩展资料:
在python语言中,对于none需要记住以下几点:
1、None是一个特殊的常量。
2、None和False不同。
3、None不是0。
4、None不是空字符串。
5、None和任何其他的数据类型比较永远返回False。
6、None有自己的数据类型NoneType。你可以将None复制给任何变量,但是你不能创建其他NoneType对象。
7、python中的None就相较于Java中的Null。python中就没有所谓的NULL。
推荐于2018-02-02
展开全部
if choice==1:
print Square_and_cube(length) 去掉print ,直接调用即可;你的函数本没有return数值,print后那就是个None
print Square_and_cube(length) 去掉print ,直接调用即可;你的函数本没有return数值,print后那就是个None
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#如果直接调用,def里面就加print,如果调用的时候用print,则用return返回值
def name2number(name):
if name == 'rock':
return 0
elif name == 'paper':
return 1
elif name == 'scissor':
return 2
else:
print('wrong name')
print(name2number("rock"))
def name2number(name):
if name == 'rock':
return 0
elif name == 'paper':
return 1
elif name == 'scissor':
return 2
else:
print('wrong name')
print(name2number("rock"))
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |