what are the data types avaiable in python code example

Example 1: how to find the datatype of a variable in python

# you can use the function type() which will returns the type of the variable
A = "Hello world !"
type(A) is int # returns False
type(A) is str # returns True

Example 2: python data types

#use syntax: variable = value
#string
string = 'ASCII text'
#integer
integer = 1234567890
#float
floatnum = 123.456
#list(called arrays in other languages)
numlist = [1,2,3,4,5]
#dictionary(called objects in other languages)
dictionary = {'key','value'}