ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

118 results

Code with Ebrima
Type Casting in Python programming Explained

Description Welcome to this Python Type Casting tutorial! In this video, you'll learn how to convert between different data types in ...

7:43
Type Casting in Python programming Explained

359 views

9 months ago

BiswasXTech
🐍✨ Python String Magic: Replace Words Easily!

In this video, you'll learn how to replace words easily using Python's .replace() method and understand how string manipulation ...

6:16
🐍✨ Python String Magic: Replace Words Easily!

0 views

1 month ago

Craig Piercy
Python built-in function: id()

It's a built-in Python function that returns the unique identifier of an object. Here's the syntax: id(object) `object`: The object whose ...

4:25
Python built-in function: id()

95 views

9 months ago

Craig Piercy
Python built-in function: eval()

The `eval()` function parses and evaluates a Python expression passed to it as a string. Here's the syntax: - `expression`: A string ...

4:25
Python built-in function: eval()

139 views

10 months ago

Craig Piercy
Python data types: Collections.UserString

Why Not Just Subclass `str`? You can subclass `str`, but it's tricky. Many built-in string methods are implemented in C, and they ...

5:03
Python data types: Collections.UserString

25 views

4 months ago

Craig Piercy
Python built-in function: filter()

... the code block is passed as a string to `exec()`, and it's executed like a normal Python script. `exec()` can also define functions ...

4:06
Python built-in function: filter()

243 views

10 months ago

Programming threads
Python Variables for Beginners

This video will focus on defining variables in Python, a good starting point for beginners in programming. You will learn about ...

2:40
Python Variables for Beginners

53 views

3 months ago

Craig Piercy
Python built-in function: var()

The Python programming language has over 60 built-in functions to help you code more efficiently. In this video, we will discuss ...

4:41
Python built-in function: var()

90 views

8 months ago

Jacob Itegboje
Python for Beginners: What is None?

Have you ever wondered what None truly means in Python? Or struggled to understand how it's different from 0, an empty string, ...

29:20
Python for Beginners: What is None?

27 views

10 months ago

codingjerk
Python 3.14. What's new?

So, in one month Python 3.14b1 will be released, and in this video I'll show you off most of the important changes that's coming.

12:35
Python 3.14. What's new?

64,053 views

9 months ago

Craig Piercy
Python built-in function: str()

What is `str()`? It's a Python built-in function that converts an object to its string representation. Here's the syntax: str(object='') ...

5:02
Python built-in function: str()

46 views

8 months ago

Craig Piercy
Python built-n function: bytes()

The Python programming language has over 60 built-in functions to help you code more efficiently. In this video, we will discuss ...

3:50
Python built-n function: bytes()

68 views

11 months ago

Craig Piercy
Python data type: str

Behind the scenes, a string in Python is actually an ordered collection of characters. That means:- Each character has a position, ...

5:28
Python data type: str

30 views

7 months ago

Craig Piercy
Python built-in function: staticmethod()

It's a Python built-in function that transforms a method into a static method. Here's the syntax: staticmethod(function) - `function`: ...

4:40
Python built-in function: staticmethod()

29 views

8 months ago

Craig Piercy
Python built-in function: slice()

In this example, `slice(7, 13)` extracts the substring `'Python'` from the string. You can access the attributes of a `slice` object to ...

5:01
Python built-in function: slice()

30 views

8 months ago

Craig Piercy
Python built-in function: min()

The Python programming language has over 60 built-in functions to help you code more efficiently. In this video, we will discuss ...

4:06
Python built-in function: min()

11 views

9 months ago

Craig Piercy
Python built-in function: object()

It doesn't have custom attributes or methods, but it exists as a valid Python object. `object()` is often used as a placeholder or ...

4:03
Python built-in function: object()

45 views

9 months ago

Code with Ebrima
Data Types in Python for Beginners 2025: Primitives & Using the type() Function

Description Welcome to this Python tutorial where we explore the core data types in Python! In this video, you'll discover: • What ...

4:40
Data Types in Python for Beginners 2025: Primitives & Using the type() Function

260 views

9 months ago

Craig Piercy
Python function video: delattr()

In this video, we will discuss the functions: delattr() Hello, Pythonistas! In today's video, we're tackling the built-in Python function ...

4:37
Python function video: delattr()

57 views

10 months ago

Craig Piercy
Python built-in function: len()

It's a built-in Python function that returns the number of items in an object, such as a list, tuple, string, or dictionary. Here's the ...

4:38
Python built-in function: len()

49 views

9 months ago

Craig Piercy
Python built-in function: pow()

The Python programming language has over 60 built-in functions to help you code more efficiently. In this video, we will discuss ...

5:17
Python built-in function: pow()

48 views

9 months ago

Craig Piercy
Python built-in function video: int()

It's a built-in Python function that converts a number or string into an integer. Here's the syntax: int(x=0, base=10) `x`: The value ...

5:20
Python built-in function video: int()

29 views

9 months ago

Craig Piercy
Python built-in function: set()

It's a built-in Python function that creates a set object, which is an unordered collection of unique elements. Here's the syntax: ...

4:12
Python built-in function: set()

11 views

8 months ago

Craig Piercy
Python built-in function: repr()

It's a Python built-in function that returns a string representation of an object. Here's the syntax: repr(object) - `object`: The object ...

4:45
Python built-in function: repr()

35 views

8 months ago

Craig Piercy
Python built-in function: round()

It's a built-in Python function that rounds a number to a specified number of decimal places. Here's the syntax: round(number[, ...

4:36
Python built-in function: round()

158 views

8 months ago