def x1():
y = input("Input pet here: ")
if y == "pet":
return True
else:
return False
x1()
def x2():
y = input("Input pet here: ")
if y == "pet":
print(y)
else:
print("not a pet")
x2()
输出:C:\Users\jiraf\AppData\Local\Programs\Python\Python39\python.exe "C:/Users/jiraf/OneDrive/Documents/Grzegorz/Programowanie/Python/kurs/1.02/Wykład 1.8 Funkcje (definiowanie,争论).py"
在此处输入宠物:shit 在此处输入宠物:shit not a pet
我尝试了许多简单的函数,这些函数应该返回一些东西
我不知道为什么会这样。