“Karte Python 3” Code-Antworten

Karte in Python

# Python program to demonstrate working 
# of map. 
  
# Return double of n 
def addition(n): 
    return n + n 
  
# We double all numbers using map() 
numbers = (1, 2, 3, 4) 
result = map(addition, numbers) 
print(list(result))
# result [2, 4, 6, 8]
Grumpy Gull

Karte Python 3

from multiprocessing import Pool

def test( v ):
    print(v)
    return v

if __name__ == '__main__':
    with Pool(2) as p:
        print(p.map(test, range(5)))
Xerothermic Xenomorph

Ähnliche Antworten wie “Karte Python 3”

Fragen ähnlich wie “Karte Python 3”

Weitere verwandte Antworten zu “Karte Python 3” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen