Python使用print函數打印的結果返回None問題詳解

例子 def first(): print("帳號:%s, 密碼:%s" % ('user', 'psw')) print(first()) >>>帳號:user, 密碼:psw >>>None Q:爲何返回結果有個None? A:由於python中print函數須要返回值,若是你在print函數中所放的函數沒有返回值,那麼print將會return Nonehtml 請注意,函數體
相關文章
相關標籤/搜索