Comparison of map and list derivation efficiency in Python instance analysis and python instance analysis

Source: Internet
Author: User

Comparison of map and list derivation efficiency in Python instance analysis and python instance analysis

This article describes how to compare the efficiency of map and list derivation in Python. Share it with you for your reference. The specific analysis is as follows:

Test the Code directly:

#! /Usr/bin/env python #-*-coding: UTF-8-*-# list comprehension and map import time def test (f, name): st = time. time () f () print '% s % ss' % (name, time. time ()-st) TIMES = 1000 ARR = range (10000) def tmap (): I = 0 while (I <TIMES): map (lambda x: x, ARR) I = I + 1 def tlst (): I = 0 while (I <TIMES): [x for x in ARR] I = I + 1 test (tmap, "map ") test (tlst, "lst ")

Test results on my computer:

Map 1.06299996376 s lst 0.296000003815 s

Obviously, list derivation is much faster than map operations, and it is three times faster.

I hope this article will help you with Python programming.

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.