Number Data Type In Python With Data Type Conversion

preview_player
Показать описание
Python supports integers, floating-point numbers and complex numbers. They are defined as int, float, and complex classes in Python.

Video start with Number data type in python introduction, how to write binary, octal and hexadecimal number in python and then explanation of all number data type with example.

Chapters

0:00 Intro
10:00 Data type conversion in python is explained.

In the end, I have mention one programming exercise to understand python in better way.

#pythontutorial #PythonDataType #Integer #float #complex #datatypeconversion #pythonprogramming

Please support "Hiren Tailor" channel & Subscribe:
Рекомендации по теме
Комментарии
Автор

x=1
y=3.6
print(int(x+y))

Answer : 4

Because python consider value before decimal point therefore 4.6 = 4.

hetalhtailor