ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

103 results

Discover with Mia
Ren'Py Tutorial: Turn-Based Battle System for Beginners (Python + UI)

Build a complete turn-based battle system in Ren'Py step by step! In this beginner-friendly Ren'Py tutorial, we'll use simple Python ...

47:09
Ren'Py Tutorial: Turn-Based Battle System for Beginners (Python + UI)

502 views

3 weeks ago

Discover with Mia
Python Exceptions Tutorial + Ren’Py Potion Shop | Try, Except, Else & Finally

Hiii, adventurers! Mia here! In this beginner-friendly Python + Ren'Py tutorial, I'll teach you how to handle errors safely using try, ...

29:06
Python Exceptions Tutorial + Ren’Py Potion Shop | Try, Except, Else & Finally

250 views

10 days ago

Programming threads
Counter Does In One Line What You Write In Six

#Python #PythonTips #Counter #Collections #LearnPython #Programming #PythonTutorial #CodingTips.

1:03
Counter Does In One Line What You Write In Six

1,109 views

2 weeks ago

Programming threads
Python Thinks True And 1 Are The Same Key

In Python, True and 1 are the same dictionary key. bool is a subclass of int, so True does not merely equal 1, it hashes identically ...

0:51
Python Thinks True And 1 Are The Same Key

1,085 views

3 weeks ago

Joseph H.Schuessler
Python Fundamentals for Business: Variables, Loops & Functions Explained | Ep. 26

A computer is fast but entirely literal — it does nothing without precise, coded instructions. This video breaks down the ...

5:11
Python Fundamentals for Business: Variables, Loops & Functions Explained | Ep. 26

17 views

4 weeks ago

Programming threads
zip() Silently Deleted Your Data

#Python #PythonTips #zip #PythonBugs #LearnPython #Programming #PythonTutorial #CodingTips.

0:46
zip() Silently Deleted Your Data

1,226 views

3 weeks ago

Programming threads
.strip() Is Not Removing What You Think

Python's .strip() does not remove a suffix, it removes characters. Calling "filename.txt".strip(".txt") gives you 'filenam', not 'filename'.

1:15
.strip() Is Not Removing What You Think

106 views

3 weeks ago

Programming threads
Python Generators Are Empty The Second Time

A Python generator can only be read once. Run the exact same line twice and the second one hands you an empty list, with no ...

1:08
Python Generators Are Empty The Second Time

256 views

2 weeks ago

Programming threads
Python Default Arguments Leak Between Calls

#Python #PythonTips #MutableDefault #PythonBugs #LearnPython #Programming #PythonTutorial #CodingTips.

0:48
Python Default Arguments Leak Between Calls

944 views

3 weeks ago

Programming threads
Set Difference

Python set difference only looks one way, and that is how a comparison quietly reports that nothing changed. set(a) minus set(b) ...

1:01
Set Difference

1,121 views

12 days ago

COMPUTER & EXCEL SOLUTION
Dry run concept with for loop in python || How to dry run in python@COMPUTEREXCELSOLUTION

pythonprogramming Join this channel to get access to perks: ...

8:03
Dry run concept with for loop in python || How to dry run in python@COMPUTEREXCELSOLUTION

97 views

3 weeks ago

Programming threads
Python Says NaN Is Not Equal To Itself, Then Finds It Anyway

In Python, NaN is not equal to itself. Comparing float('nan') to itself with == returns False, which is deliberate and part of IEEE 754.

0:51
Python Says NaN Is Not Equal To Itself, Then Finds It Anyway

1,114 views

3 weeks ago

Programming threads
Set Speed - Fast or Slow?

Set membership in Python is constant time, which is why this rewrite is so tempting and why it is slower than the loop it replaced.

0:57
Set Speed - Fast or Slow?

1,103 views

12 days ago

Programming threads
getsizeof() Misses 32 Megabytes Of Your List

A Python list does not contain your integers. It contains pointers to them, and sys.getsizeof only measures the pointers. Two lists of ...

1:15
getsizeof() Misses 32 Megabytes Of Your List

125 views

4 days ago

Programming threads
Reading a file with threads

Reading a file with several threads really is faster in Python. The problem is what fraction of the job the read actually was.

1:12
Reading a file with threads

265 views

9 days ago

OceanDataLab
How to extract OVL portal data layers in png, kmz or Python npy format
1:26
How to extract OVL portal data layers in png, kmz or Python npy format

9 views

2 weeks ago

Programming threads
Dict Comprehensions Drop Duplicate Keys Silently

A Python dict comprehension is not a copy, it is a merge, and merges lose things. Feed it three pairs where a key repeats and you ...

0:51
Dict Comprehensions Drop Duplicate Keys Silently

610 views

3 weeks ago

Programming threads
Why Python Reuses 256 but Not 257

is compares identity. == compares value. For numbers, that difference has a sharp edge. CPython pre-creates every integer from ...

0:41
Why Python Reuses 256 but Not 257

360 views

3 weeks ago

Programming threads
This Tuple Raises An Error And Mutates Anyway

An exception is not a rollback. Doing += on a list stored inside a Python tuple raises TypeError and mutates the list anyway.

0:43
This Tuple Raises An Error And Mutates Anyway

1,139 views

3 weeks ago

Programming threads
sum() Of Floats Never Reaches 1.0

Adding 0.1 to itself ten times in Python does not give you 1.0. It gives 0.9999999999999999, and comparing that to 1.0 with ...

0:45
sum() Of Floats Never Reaches 1.0

1,364 views

2 weeks ago