Mapping Functions over Sequences : Map : Buildin Function PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Function » Map »

 

Mapping Functions over Sequences


counters = [1234

def inc(x)return x + 10              # Function to be run
map(inc, counters)                      # Collect results



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Function
» Map