ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

209 results

J David Eisenberg
Chapter 7: Using String Methods

A short program that uses string methods to split an address in the form 'City, ST 99999' into three separate variables for the city, ...

3:45
Chapter 7: Using String Methods

81 views

2 years ago

J David Eisenberg
Chapter 4: Reading Strings and Extracting Characters from them

How to read a line of text into a string, and how to get specific characters from it.

3:58
Chapter 4: Reading Strings and Extracting Characters from them

123 views

6 years ago

J David Eisenberg
Chapter 2: Printing with the format() method

Before f-strings were in Python, programmers used the format() method to get formatted output. You might see this notation in ...

2:17
Chapter 2: Printing with the format() method

104 views

2 years ago

Programming threads
I Tried the Weirdest Ways to Search in a List in Python

Learn how to search in a list with Python using multiple ways, some of them will decrease in performance, and decide which one ...

1:00
I Tried the Weirdest Ways to Search in a List in Python

332 views

1 year 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

2 months ago

COMPUTER & EXCEL SOLUTION
Negative slicing of String in Python@COMPUTEREXCELSOLUTION

Join this channel to get access to perks: https://www.youtube.com/channel/UC4C_tfy6WLDxzVVO3y6YinA/join This is my ...

2:22
Negative slicing of String in Python@COMPUTEREXCELSOLUTION

266 views

3 years ago

J David Eisenberg
Chapter 13: Converting an Object to a String

How to get something better than the name of a class and its memory reference when you print an object reference.

2:35
Chapter 13: Converting an Object to a String

100 views

2 years ago

J David Eisenberg
Chapter 9: Programming with Lists

It's time to use some of the list operations to write a program that manipulates a list.

3:03
Chapter 9: Programming with Lists

90 views

2 years ago

Programming threads
Easy Trick for Naming Functions (and Why It Matters)

Every programmer should know this easy trick for naming functions irrespective of the programming language he uses. Naming ...

1:00
Easy Trick for Naming Functions (and Why It Matters)

160 views

1 year ago

J David Eisenberg
Chapter 10: Passing Objects to Methods

When you pass an object to a method, you are passing a copy of the *reference* to that object. That lets you update an object's ...

2:07
Chapter 10: Passing Objects to Methods

180 views

4 years ago

J David Eisenberg
Chapter 9: Modifying Lists

Unlike strings, lists in Python are *mutable* -- you can reassign values in a list, delete items from a list, and insert or append new ...

1:29
Chapter 9: Modifying Lists

83 views

2 years ago

COMPUTER & EXCEL SOLUTION
index method in Python@COMPUTEREXCELSOLUTION

Join this channel to get access to perks: https://www.youtube.com/channel/UC4C_tfy6WLDxzVVO3y6YinA/join This is my ...

1:50
index method in Python@COMPUTEREXCELSOLUTION

66 views

2 years ago

Smiansh
Flow Control In Python: From Basics to Nested Ifs in Three Minutes!

In this comprehensive tutorial, you will unlock the secrets of controlling program flow with Python conditions. Whether you're just ...

2:51
Flow Control In Python: From Basics to Nested Ifs in Three Minutes!

40 views

1 year ago

Programming threads
The Python Tuple Hack You Didn't Know About

Everyone know tuples are immutable in Python and you cannot modify a tuple once it has been created. Today I'm sharing this ...

0:43
The Python Tuple Hack You Didn't Know About

35 views

1 year ago

Programming threads
Python Try Else: The Secret Feature You Didn't Know About

Python Try Else In this video we are going to discuss about a controversial concept - try-else in Python. It is a unique feature to ...

2:26
Python Try Else: The Secret Feature You Didn't Know About

336 views

1 year ago

J David Eisenberg
Chapter 11: The toString() method

Learn how to print the fields in an object when you put an object into a System.out.println() call.

3:37
Chapter 11: The toString() method

162 views

3 years ago

Programming threads
Lists vs Tuples: Why Is One 3x Faster? (Python Memory Secrets)

Think you know the difference between Python lists and tuples? Most developers only know about mutability—but the REAL ...

0:51
Lists vs Tuples: Why Is One 3x Faster? (Python Memory Secrets)

1,048 views

2 months ago

J David Eisenberg
Chapter9: join() - a Cautionary Tale

The join() method requires a list of *strings* as its argument. What do you do if you want to join a list of numbers? Find out in this ...

2:17
Chapter9: join() - a Cautionary Tale

63 views

2 years 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

J David Eisenberg
Chapter 9: List Aliasing

Variables in Python are *references*. When you assign a list variable to another list variable, you get a copy of the reference, not ...

2:28
Chapter 9: List Aliasing

458 views

2 years ago

Programming threads
Python List Performance: Optimize List Creation for Faster Code

Let's explore the performance of Python list creation and see how different approaches can affect execution speed — right down ...

1:38
Python List Performance: Optimize List Creation for Faster Code

648 views

1 year ago

J David Eisenberg
Chapter 7: Copying Arrays

Arrays are reference variables, which means simple assignment doesn't make a copy of the values.

3:54
Chapter 7: Copying Arrays

213 views

4 years ago

Programming threads
Python Override: Make Your Code *Better!*

Python Override Python override decorator was added in Python 3.12 to improve the code clarity mainly. If you are coming from a ...

0:50
Python Override: Make Your Code *Better!*

70 views

11 months ago

Programming threads
Swap Dictionary Keys & Values in 1 Line! 🐍 #Python

Learn how to swap dictionary keys and values using Python dictionary comprehension in just one line! This Pythonic approach ...

0:45
Swap Dictionary Keys & Values in 1 Line! 🐍 #Python

58 views

1 year ago

J David Eisenberg
Chapter 5: Using a while to get input

Use a *while* loop to repeatedly get input in a program.

3:21
Chapter 5: Using a while to get input

312 views

6 years ago