Python data type conversions (str to int conversion)

Source: Internet
Author: User

Because Python differs from Java in the syntax of data type conversions, it is always confusing and is hereby documented for easy access:

In Python:

String str converts to Int:int_value = Int (str_value)

int converts to string str:str_value = str (int_value)

int-> Unicode:unicode (int_value)

Unicode-> int:int (unicode_value)

Str-> unicode:unicode (str_value)

Unicode-> str:str (unicode_value)

int-> str:str (int_value)

Str-> int:int (str_value)

In Java:

string strings are converted to Int:int_value = String.parseint (string_value) or (int) string_value

int converts to String string:string_value = (string) int_value

Note the position of the brackets.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.