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)

501 views

3w 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

10d 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

4w 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

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

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

96 views

3w 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

3w 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

3w 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

3w 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

3w 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

12d 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

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

8d 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

12d ago

Kimz
3行程式碼即刻擁有 ML 互動介面

3行程式碼即刻擁有ML 互動介面,43.4k Stars 的Python 機器學習框架本報告全面拆解: • 43.4k Stars,Apache-2.0 授權,700 ...

1:53
3行程式碼即刻擁有 ML 互動介面

3 views

3w 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

2w ago

J David Eisenberg
Symbolic Links

Symbolic links have several advantages over hard links, and they are more often used. The first part of the video goes into the ...

8:41
Symbolic Links

97 views

8d 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

3w 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

3w 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

4d ago