ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

4,668 results

Python Morsels
Strings in Python

Strings are used to store text-based data. Article at https://pym.dev/strings-in-python/ More #Python screencasts at ...

2:16
Strings in Python

367 views

1 year ago

Jakubication
Python String maketrans

Python's string maketrans method returns a translation table that is a useful intermediate step when using another Python String ...

1:44
Python String maketrans

196 views

1 year ago

Python Morsels
The string "split" method in Python

Strings can be split by a substring separator. Usually the string "split" is called without any arguments, which splits on any ...

1:49
The string "split" method in Python

1,837 views

1 year ago

Jakubication
Python String translate

Python's string translate method converts chosen original characters in a string to different characters. Translate requires a ...

2:28
Python String translate

78 views

1 year ago

Jakubication
Python String Center Method

The string center method in Python centers the string you called this method on with the character you provide to the center ...

2:15
Python String Center Method

38 views

1 year ago

Python Morsels
Python's two different string representations

In Python, we have two different string representations: the human-readable string representation and the programmer-readable ...

3:11
Python's two different string representations

373 views

3 years ago

Jakubication
Python String Format

In Python, format is a string method that lets you put placeholder characters in your string to be filled in later. This method allows ...

2:23
Python String Format

177 views

1 year ago

Clever Programmer
9 - what are strings in python? (Python tutorial for beginners 2019)

... in Learn Python™ course https://cleverprogrammer.com?utm_source=youtube&utm_medium=yt-description Python String ...

3:28
9 - what are strings in python? (Python tutorial for beginners 2019)

12,593 views

6 years ago

Jakubication
Python String rfind

Python string methods are pieces of functionality in Python that do something with a string. rfind in Python finds the last index of a ...

1:23
Python String rfind

229 views

1 year ago

nova coder
"5 Must-Know Python String Methods for Beginners 🔥 | lower(), upper(), capitalize(), title()...

Welcome to another Python basics video! In this tutorial, I'll show you 5 important string methods in Python that every beginner ...

1:11
"5 Must-Know Python String Methods for Beginners 🔥 | lower(), upper(), capitalize(), title()...

30 views

8 months ago

Jakubication
Python String Remove Suffix

Removing a suffix from a string in Python can be done with the string removesuffix method. Python String Methods Playlist ...

0:46
Python String Remove Suffix

224 views

2 years ago

Jakubication
Python | String isascii

The isascii method in Python returns True if every character in the string is on the ascii table. In other terms, it returns True if every ...

0:34
Python | String isascii

151 views

2 years ago

Automation Helpers
Python | Split and Join Strings

With the split and join method, strings can be easily manipulated. The split method “splits” or divides a string into a list. The join ...

2:00
Python | Split and Join Strings

9,966 views

6 years ago

Jakubication
isidentifier() Python

In this video, we'll be discussing the isidentifier() method in Python. isidentifier() is used to determine whether a string is a valid ...

0:53
isidentifier() Python

236 views

2 years ago

Jakubication
Python String Count

String count in Python returns the number of occurrences of a certain substring within another string. You can optionally specify ...

0:54
Python String Count

118 views

2 years ago

Python Morsels
String concatenation and string interpolation in Python

Wondering how to concatenate a string in Python? Hold on! There are two ways to build up bigger strings out of smaller strings: ...

3:04
String concatenation and string interpolation in Python

664 views

2 years ago

Jakubication
Python String Remove Prefix

Removing a prefix from a string in Python can be done with the string removeprefix method. Python String Methods Playlist ...

1:24
Python String Remove Prefix

497 views

2 years ago

Socratica
Python Strings  ||  Python Tutorial  ||  Python Programming

Stay in the loop INFINITELY: https://snu.socratica.com/python In this Python tutorial, we introduce all the ...

3:24
Python Strings || Python Tutorial || Python Programming

381,400 views

11 years ago

Jakubication
Python String lstrip

Python's string lstrip method removes all occurrences of the set of characters you pass in from the start of the string. This video ...

0:57
Python String lstrip

27 views

1 year ago

Jakubication
Python String Upper

In Python, upper is a string method that uppercases a string. Python's string upper method does this by converting cased ...

0:51
Python String Upper

12 views

1 year ago

Jakubication
Python String Index

Within Python, discover the String index method. index can be used in Python to determine where a string contains a particular ...

0:34
Python String Index

54 views

2 years ago

Jakubication
Python String rstrip

In Python, rstrip is a string method that removes all occurrences of the set of characters you pass in from the end of the string.

1:02
Python String rstrip

58 views

1 year ago

Jakubication
Python String startswith

In Python, startswith determines whether or not a string starts with with certain characters. startswith returns True in Python if the ...

1:42
Python String startswith

67 views

1 year ago

Jakubication
Python String Lower

In Python, lower is a string method that lowercases a string. Python's string lower method does this by converting cased characters ...

0:58
Python String Lower

6 views

1 year ago

Automation Helpers
Python | Trim Whitespace From Strings with Strip Function

To remove unnecessary starting and trailing spaces and whitespaces around a string we can use the strip function. The strip ...

1:34
Python | Trim Whitespace From Strings with Strip Function

26,766 views

6 years ago