ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

4,762 results

CampusX
Lambda Functions in Python | Map, Filter and Reduce | Higher Order Functions in Python

In this tutorial, we delve into the world of anonymous functions and explore how Lambda functions streamline your code.

34:58
Lambda Functions in Python | Map, Filter and Reduce | Higher Order Functions in Python

53,734 views

4 years ago

Schraf : Maths-info
3 - Python pratique : map, filter, reduce, lambda

00:00 Programmation fonctionnelle 06:33 map 09:09 filter 10:53 Application map et filter 14:49 reduce 17:38 reduce sur les ...

25:25
3 - Python pratique : map, filter, reduce, lambda

260 views

1 year ago

North Bay Python
Memory Management in Python - The Basics

Nina Zakharenko https://2018.northbaypython.org/schedule/presentation/19/ As a new Python developer, trying to understand ...

30:27
Memory Management in Python - The Basics

44,684 views

7 years ago

KreaTuto
PF avec Python : La fonction « reduce »

A quoi sert la fonction « reduce » ? Comment utiliser la fonction « reduce » ? Programmation Fonctionnelle avec Python ...

3:52
PF avec Python : La fonction « reduce »

183 views

2 years ago

Roel Van de Paar
Reduce common command in multiple methods - Python

Reduce common command in multiple methods - Python Helpful? Please use the *Thanks* button above! Or, thank me via ...

2:33
Reduce common command in multiple methods - Python

4 views

3 years ago

Zeba Academy EN
How to Use reduce() Function in Python?

reduce() works differently than map() and a filter(). It does not return a new list based on the function and iterable we've passed.

0:51
How to Use reduce() Function in Python?

2 views

5 years ago

The Debug Zone
Joining Multiple PySpark DataFrames with Python's reduce() Function

In this video, we delve into the powerful capabilities of PySpark for data manipulation, focusing specifically on how to efficiently ...

2:23
Joining Multiple PySpark DataFrames with Python's reduce() Function

3 views

6 months ago

Python Peak
How to visualize array reduce function? visualizing array reduce use cases in python turtle

How to visualize array reduce function? Use Python Turtle to illustrate PHPs array_reduce. Create a symmetric and colorful ...

1:24
How to visualize array reduce function? visualizing array reduce use cases in python turtle

20 views

1 year ago

Josué Fredes
Uso funciones Map, Reduce y Filter en Python

Extracto primera sesión online del módulo BigData de la carrera Data Science en Desafío Latam.

26:22
Uso funciones Map, Reduce y Filter en Python

461 views

6 years ago

AmbiG1
#Python - Lambda, map, filter, reduce [3.7]

ambig.one/2.

14:45
#Python - Lambda, map, filter, reduce [3.7]

76 views

7 years ago

Ingeniero John Ortiz Ordoñez
Python Ejercicio: 1127 2/2 HackerRank Uso Función reduce() para el Producto de Números Racionales

1127. 2/2 HackerRank Uso de la Función reduce() para el Producto de Números Racionales con el lenguaje de programación ...

4:40
Python Ejercicio: 1127 2/2 HackerRank Uso Función reduce() para el Producto de Números Racionales

165 views

4 years ago

The Debug Zone
Optimize Python Code: Reduce Repetition in For Loops with These Tips

In this video, we dive into the world of Python programming to explore effective strategies for optimizing your code. Specifically ...

3:08
Optimize Python Code: Reduce Repetition in For Loops with These Tips

10 views

1 year ago

src7cse
Functional programming features  Lambda function, map, filter, reduce  in Python #python #src7cse

Functional programming features Lambda function, map, filter, reduce in Python #python #src7cse ...

7:07
Functional programming features Lambda function, map, filter, reduce in Python #python #src7cse

102 views

1 year ago

The Debug Zone
Speed Up File Copying in Python with Multiprocessing and Multithreading

In this video, we dive into the world of Python programming to explore efficient ways to speed up file copying processes.

4:42
Speed Up File Copying in Python with Multiprocessing and Multithreading

20 views

1 year ago

Python Peak
How can sys.intern() reduce memory usage in Python? Reduce Memory in Python with sys.intern() -

How can sys.intern() reduce memory usage in Python? sys.intern() lets you store only one copy of a repeated string. Using it ...

1:34
How can sys.intern() reduce memory usage in Python? Reduce Memory in Python with sys.intern() -

26 views

1 year ago

Python Peak
Why does Python’s __slots__ save memory? Reduce Memory in Python Classes with __slots__

Why does Python's __slots__ save memory? The __slots__ mechanism reduces memory by avoiding instance dictionaries.

1:08
Why does Python’s __slots__ save memory? Reduce Memory in Python Classes with __slots__

15 views

1 year ago

Roel Van de Paar
How can I reduce the TIme Complexity. of the python program?

How can I reduce the TIme Complexity. of the python program? Helpful? Please support me on Patreon: ...

2:33
How can I reduce the TIme Complexity. of the python program?

78 views

3 years ago

Ingeniero John Ortiz Ordoñez
Python Ejercicio: 1127 1/2 HackerRank Uso de Función reduce() para el Producto de Números Racionales

1127. 1/2 HackerRank Uso de la Función reduce() para el Producto de Números Racionales con el lenguaje de programación ...

11:56
Python Ejercicio: 1127 1/2 HackerRank Uso de Función reduce() para el Producto de Números Racionales

146 views

4 years ago

The Debug Zone
How to Reduce Elif Blocks in Python: Simplifying Conditional Logic

In this video, we dive into the concept of elif blocks in Python and explore effective strategies to simplify your conditional logic.

2:16
How to Reduce Elif Blocks in Python: Simplifying Conditional Logic

0 views

4 months ago

Roel Van de Paar
Code Review: Python methods to reduce running times KTNS algorithm (3 Solutions!!)

Code Review: Python methods to reduce running times KTNS algorithm Helpful? Please support me on Patreon: ...

5:10
Code Review: Python methods to reduce running times KTNS algorithm (3 Solutions!!)

4 views

4 years ago

Python Peak
Why use functools.reduce() for chaining operations? #discover the #magic of functools.reduce() in

Why use functools.reduce() for chaining operations? Reduce allows you to apply a function to a list. It combines items based ...

0:33
Why use functools.reduce() for chaining operations? #discover the #magic of functools.reduce() in

57 views

1 year ago

Codexpanse with Rakhim
Filter, Map, Reduce explained in less than 2 minutes

Lear about important building blocks of functional programming. Watch this video to learn about recursion: ...

1:34
Filter, Map, Reduce explained in less than 2 minutes

8,863 views

6 years ago

The Debug Zone
Why Removing Unnecessary Items from a Python List Reduces Computational Time

In this video, we delve into the importance of optimizing Python lists by removing unnecessary items. As we explore the ...

3:02
Why Removing Unnecessary Items from a Python List Reduces Computational Time

1 view

1 month ago

Alexander Hess - Pythonista
A first look at the map-filter-reduce paradigm

In this video, I introduce the map-filter-reduce paradigm. Conceptually speaking, it is simply a classification scheme for the ...

17:22
A first look at the map-filter-reduce paradigm

227 views

4 years ago

EuroPython Conference
Alexander Hendorf - Data Analysis and Map-Reduce with mongoDB and pymongo

Alexander Hendorf - Data Analysis and Map-Reduce with mongoDB and pymongo [EuroPython 2015] [22 July 2015] [Bilbao, ...

38:02
Alexander Hendorf - Data Analysis and Map-Reduce with mongoDB and pymongo

998 views

10 years ago