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

Python int与string 的转换

时间:2014-12-15 18:47:18      阅读:654      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   strong   on   bs   tt   nbsp   python   type   

string → int

1、10进制的string转化为int

  int(‘12‘)  → type(int(‘12‘)) 进行验证

2、16进制的string转化为int

  int(‘12‘, 16)

 

int → string

1、int转化为10进制的string

  s1 = str(18)

  print s1  #输出 18

2、int转化为16进制的string

  tt = hex(18) 

  print tt   #输出0x12

Python int与string 的转换

标签:ar   sp   strong   on   bs   tt   nbsp   python   type   

原文地址:http://www.cnblogs.com/dtest/p/4165368.html

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