type convert in python
摘要:
there is no type cast in python, every conversion in python will create a new object. Not like in Java and C++, the original object will still be exist in the system.there are some of the built in functions in python to help the conversion. Such as:>>> int('123')123>>> int( 阅读全文