Python print函数的输出 Python基础,test,Python进阶,Python 评论 November 16, 2020 未见秋 def showplus(x): print(x) return x + 1 num = showplus(6) add = num + 2 print(add) 输出结果:69