Python Type Conversion

Python Type Conversion

Hello I will show some type conversions and casting processes.First of all, I have to state that conversion processes in python are separated as follows. 1-) Implicit Type Conversion2-) Explicit…
Python Boolean

Python Boolean

Hi,The names of Pythonda boolean data types are True and False.You must pay attention to this naming when using a condition. print(type(True)) #<class 'bool'> print(type(true)) #NameError: name 'true' is not…
Python String

Python String

HiIn this topic, we will talk about python String properties.Variable value can be written in single quotes or double quotes. test_str = "adsa" #adsa test_str2 = 'adasd' #adasd print(test_str) print(test_str2)…
Python Numeric Types

Python Numeric Types

Hello ,In Python, we can divide Numerics types in 2 parts in general. As Integer and Float. number1 = 100 number2 = 203123123123123125430 number3 = -300 print(number1) # 100 print(number2)…
Python Linux Installation

Python Linux Installation

To do this, follow these steps on the command line. sudo apt install software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa then sudo apt update & upgrade Now ready to install .. sudo apt…