码迷,mamicode.com
首页 > 编程语言 > 详细

python 数字和字符串转换问题

时间:2015-01-19 18:51:42      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

一、python中字符串转换成数字

(1)import string 

tt=‘555‘

ts=string.atoi(tt)

ts即为tt转换成的数字

转换为浮点数 string.atof(tt)

(2)直接int

int(tt)即可。

二、数字转换成字符串

tt=322

tem=‘%d‘ %tt

tem即为tt转换成的字符串

python 数字和字符串转换问题

标签:

原文地址:http://www.cnblogs.com/zmlctt/p/4234257.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!