Python converts a string in a list to a number

Source: Internet
Author: User

The example in this article describes how the list elements in Python are converted to numbers. Share to everyone for your reference, as follows:

There is a list of numeric characters:

numbers = [' 1 ', ' 5 ', ' 10 ', ' 8 ']

You want to convert each element to a number:

numbers = [1, 5, 10, 8]

Use a loop to solve:

New_numbers = [];for N in Numbers:  new_numbers.append (int (n)); numbers = New_numbers;

Is there a simpler statement that can be done?

1.

numbers = [Int (x) for x in numbers]

2. python2.x, you can use the map function

Numbers = map (int, numbers)

If 3.x,map returns a Map object, it can also be converted to a list:

Numbers = list (map (int, numbers))

3. There is also a more complex point:

For I, V in Enumerate (numbers): numbers[i] = Int (v)


Ext.: https://www.jb51.net/article/86561.htm

Python converts a string in a list to a number

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.