python3中input的问题

在python3中只有input而没有像python2中分类为raw_input和input

所以在python3中要使用整形的话

 就要 使用 int()

例如 num=int(input())

这样才不会报错,TypeError: 'str' object cannot be interpreted as an intege

你可能感兴趣的:(python3中input的问题)