如何编写一个接受整数作为参数的函数?
我还没有尝试任何东西,因为我不知道从哪里开始。
答案 0 :(得分:1)
定义任何函数的方式:
def f(x):
'''
square x
'''
return x**2
print(f(4))
答案 1 :(得分:0)
def myfunction(myint):
print("this is an integer " + str(myint))
myfunction(4)
答案 2 :(得分:0)
Python可以跟踪变量的类型,而无需明确说明类型。
答案 3 :(得分:0)
话虽如此,你可以在Python 3中使用类型提示:
def f(x: int):
return x ** 2
在我看来,他们太棒了。