Python 类型转换

Posted guxingy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 类型转换相关的知识,希望对你有一定的参考价值。

原文:https://www.cnblogs.com/chenfulin5/p/7813791.html

 

 

num1 = "123";
num2 = int(num1);


num3 = "123.12";
num4 = float(num3);

以上是关于Python 类型转换的主要内容,如果未能解决你的问题,请参考以下文章