如何在Python中使用*

时间:2019-03-13 16:52:38

标签: python

为什么func起作用而func2不起作用?以及如何解决?请帮助我...

def func(name):
    return name*10
a = func("Jack")
print (a)

#==============================================#

count = input("EnterTheNum =  ")
def func2(name2):
    return name2*count
b = func2("Max")
print (b)[enter image description here][1]

1 个答案:

答案 0 :(得分:0)

将您的input放入int()函数中,将其转换为整数

count = int(input('Enter the num = '))

input方法默认返回一个字符串