How to convert int format to string format when defining python programs
本问题已经有最佳答案,请猛点这里访问。
我想将输入从int转换为string,但不能!这是我的密码!请帮助!
1 2 3 | def hi(x): print x |
如果我给X写了一封信,就会出现一条错误消息!我不想在双引号内给出我的输入,如果不这样做,有什么办法吗?
1 2 3 4 | def hi(x): print(type(x)) x= str(x) print(type(x)) |
所以您的参数是一个整数,但是当您执行
安静简单。
1 2 3 | def hi(intx): target = ''.format(intx) print target |