在确定时间打印特定符号时出现错误(python)

时间:2019-11-12 08:11:09

标签: python

4

我遇到错误:

  

TypeError:无法将序列乘以类型为'str'的非整数

2 个答案:

答案 0 :(得分:0)

如果要使sym打印一定次数,则应该将第二个变量显式转换为整数。

sym = input("Enter the symbol : ")
name = int(input("Enter the number of times : "))
print(sym* name)

答案 1 :(得分:0)

sym = input("Enter the symbol : ")
name = int(input("Enter the number of times : "))
print(str(sym) * int(name))