Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
dTub
Скачать

Type casting in Python is easy 💱

Автор: Bro Code

Загружено: 2022-10-06

Просмотров: 174541

Описание:

type casting = The process of converting a value of one data type to another
(string, integer, float, boolean)
Explicit vs Implicit

name = "Bro"
age = 21
gpa = 1.9
student = True

print(type(name))
print(type(age))
print(type(gpa))
print(type(student))

age = float(age)
print(age)

gpa = int(gpa)
print(gpa)

student = str(student)
print(student)

name = bool(name)
print(name)

00:00:00 what is type casting?
00:01:24 type function
00:02:23 explicit cast
00:06:17 implicit cast

#type #cast #casting

Type casting in Python is easy 💱

Поделиться в:

Доступные форматы для скачивания:

Скачать видео mp4

  • Информация по загрузке:

Скачать аудио mp3

Похожие видео

array(10) { [0]=> object(stdClass)#5185 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "nMCOB8KElwo" ["related_video_title"]=> string(47) "User input in Python is easy + exercises ⌨️" ["posted_time"]=> string(21) "2 года назад" ["channelName"]=> string(8) "Bro Code" } [1]=> object(stdClass)#5158 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "LKFrQXaoSMQ" ["related_video_title"]=> string(34) "Python variables for beginners ❎" ["posted_time"]=> string(21) "2 года назад" ["channelName"]=> string(8) "Bro Code" } [2]=> object(stdClass)#5183 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "Gx5qb1uHss4" ["related_video_title"]=> string(42) "10 Important Python Concepts In 20 Minutes" ["posted_time"]=> string(28) "10 месяцев назад" ["channelName"]=> string(8) "Indently" } [3]=> object(stdClass)#5190 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "tihq_bLfk08" ["related_video_title"]=> string(89) "Твоя ПЕРВАЯ НЕЙРОСЕТЬ на Python с нуля! | За 10 минут :3" ["posted_time"]=> string(19) "1 год назад" ["channelName"]=> string(49) "Хауди Хо™ - Просто о мире IT!" } [4]=> object(stdClass)#5169 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "u165UoIj9SU" ["related_video_title"]=> string(140) "Программирование для тех, кто НИЧЕГО не понял (но хочет разобраться!) (теория)" ["posted_time"]=> string(23) "1 месяц назад" ["channelName"]=> string(7) "DedaKot" } [5]=> object(stdClass)#5187 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "jc7TBgMS_kw" ["related_video_title"]=> string(39) "Math in Python is easy + exercises 📐" ["posted_time"]=> string(21) "2 года назад" ["channelName"]=> string(8) "Bro Code" } [6]=> object(stdClass)#5182 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "KdZ4HF1SrFs" ["related_video_title"]=> string(51) "Алгоритмы на Python 3. Лекция №1" ["posted_time"]=> string(19) "7 лет назад" ["channelName"]=> string(31) "Тимофей Хирьянов" } [7]=> object(stdClass)#5192 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "5g-MHZ0MzZY" ["related_video_title"]=> string(148) "Учим python за 7 часов! Уроки Python Полный курс обучения программированию на python с нуля" ["posted_time"]=> string(21) "3 года назад" ["channelName"]=> string(17) "Python Hub Studio" } [8]=> object(stdClass)#5168 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "VnuDMPQSMjs" ["related_video_title"]=> string(56) "Декораторы в Python | Быстрый курс" ["posted_time"]=> string(24) "16 часов назад" ["channelName"]=> string(25) "Артём Шумейко" } [9]=> object(stdClass)#5186 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "gOMW_n2-2Mw" ["related_video_title"]=> string(45) "Python lists, sets, and tuples explained 🍍" ["posted_time"]=> string(21) "2 года назад" ["channelName"]=> string(8) "Bro Code" } }
User input in Python is easy + exercises ⌨️

User input in Python is easy + exercises ⌨️

Python variables for beginners ❎

Python variables for beginners ❎

10 Important Python Concepts In 20 Minutes

10 Important Python Concepts In 20 Minutes

Твоя ПЕРВАЯ НЕЙРОСЕТЬ на Python с нуля! | За 10 минут :3

Твоя ПЕРВАЯ НЕЙРОСЕТЬ на Python с нуля! | За 10 минут :3

Программирование для тех, кто НИЧЕГО не понял (но хочет разобраться!) (теория)

Программирование для тех, кто НИЧЕГО не понял (но хочет разобраться!) (теория)

Math in Python is easy + exercises 📐

Math in Python is easy + exercises 📐

Алгоритмы на Python 3. Лекция №1

Алгоритмы на Python 3. Лекция №1

Учим python за 7 часов! Уроки Python Полный курс обучения программированию на python с нуля

Учим python за 7 часов! Уроки Python Полный курс обучения программированию на python с нуля

Декораторы в Python | Быстрый курс

Декораторы в Python | Быстрый курс

Python lists, sets, and tuples explained 🍍

Python lists, sets, and tuples explained 🍍

© 2025 dtub. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]