Eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
map
The map() function applies a function to each element of an iterable and returns a new iterable with the results. For example, the following code uses the map() function to square each element of a list:
Python
def square(x):
return x * x
numbers = [1, 2, 3, 4, 5]
squared_numbers =...