4
我遇到错误:
TypeError:无法将序列乘以类型为'str'的非整数
答案 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))