在python中,如何接受整数作为参数?

时间:2015-06-30 20:01:59

标签: python parameters integer

如何编写一个接受整数作为参数的函数?

我还没有尝试任何东西,因为我不知道从哪里开始。

4 个答案:

答案 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)

答案 3 :(得分:0)

话虽如此,你可以在Python 3中使用类型提示:

def f(x: int):
    return x ** 2

在我看来,他们太棒了。