Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
570 results
So for example, if we click here, we are in the Python documentation for string methods. And we could now try to find the method ...
78 views
2y ago
In this episode, we discuss strings, and some of the functions we can use to manipulate them. Key concepts and keywords in this ...
1,075 views
8y ago
Many built-in string methods are implemented in C, and they might bypass your overridden methods. That can lead to inconsistent ...
53 views
1y ago
Behind the scenes, a string in Python is actually an ordered collection of characters. That means:- Each character has a position, ...
40 views
In this video, we will discuss the functions: delattr() Hello, Pythonistas! In today's video, we're tackling the built-in Python function ...
59 views
Using Python strings. Sorry about the really scratchy voice at the beginning. Oh well. Note: I often use the terms “word” and “letter” ...
259 views
7y ago
Learn How to Use Slicing in Python to Work with Sequences Efficiently! In this tutorial, we'll dive into Python's slicing capabilities, ...
4 views
4y ago
In this video, you'll learn how to replace words easily using Python's .replace() method and understand how string manipulation ...
6 views
9mo ago
It's a Python built-in function that converts an object to its string representation. Here's the syntax: str(object='') "- `object`: ...
60 views
The Python programming language has over 60 built-in functions to help you code more efficiently. In this video, we will discuss ...
16 views
Let's try this also for a string, so string_s and I concatenate this with " – Python is fun!" And we get the list. And as a result, we get ...
81 views
Now let's focus on methods. Methods always come together with the object, and one object could be a string. For example, in here ...
77 views
... a string in here, and you see Python introduction consists of 19 characters. Let's have a look at the next functions, min and max.
111 views
Slices, comparison, immutable strings, and the “in” and “not in” operators.
161 views
CSharp Examples Regarding String Methods Made Easy JT Devs #CSharp About us ======= JT Devs is a Software consulting ...
24 views
Using the split() function to split a string into a list of substrings.
193 views
It doesn't have custom attributes or methods, but it exists as a valid Python object. `object()` is often used as a placeholder or ...
46 views
`x` can be a string, an integer, or another number type. If the input is invalid, Python will raise a `ValueError`. So, why use `float()`?
182 views
It's a built-in Python function that reads a line of text entered by the user from the keyboard. Here's the syntax: input([prompt]) ...
54 views
Here, `hash()` generates unique hash values for the number `42` and the string `'Python'`. These values are used internally in ...
191 views