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()
展开
 我来答
59分粑粑分享生活
高粉答主

2020-03-14 · 专注生活好物分享,解答日常方方面面的问题
59分粑粑分享生活
采纳数:326 获赞数:119798

向TA提问 私信TA
展开全部

这是因为,#如果直接调用,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
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
清风起急雨来
2018-02-02 · TA获得超过128个赞
知道答主
回答量:57
采纳率:100%
帮助的人:13.6万
展开全部
#如果直接调用,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"))
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式