Python 3 type() built-in function TUTORIAL

preview_player
Показать описание
Tutorial on how to use the type() built-in function from the Python 3 Standard Library.

📖 Please check out my Udemy course here:

Documentation:

⚙️ Recommended Computer Gear:

✈️ Recommended Digital Nomad Gear:
Рекомендации по теме
Комментарии
Автор

thank you for this! this explains it well and quickly :D

momentouscrazynoob
Автор

Thank you very much for this video! It was interesting and helpful :)

tymothylim
Автор

I was looking for a video tutorial for advance topics in python and found your playlist. That's awesome content dude. Thanks for such an amazing and detailed explanation :-)

pynation
Автор

where do i exactly type this "type()" function?

infojr.
Автор

the blue thing in the corner gets in the way of your code :(

data
Автор

Hi, I've only just found your channel and it seems a good channel it is!

Number = (int, float)
def number_squared(n: Number) -> Number:
return n*n

number_squared(4)
# 16
number_squared(4.5)
# 20.25
"def number_squared(n: Number) -> Number:" can you direct me to where I can read about this python form of passing arguments or explain it?

SusanAmberBruce