xxxxxxxxxx
# Use the function int() to turn a string into an integer
string = '123'
integer = int(string)
integer
# Output:
# 123
xxxxxxxxxx
# this is a string
a = "12345"
# use int() to convert to integer
b = int(a)
# if string cannot be converted to integer,
a = "This cannot be converted to an integer"
b = int(a) # the interpreter raises ValueError
xxxxxxxxxx
#INTEGERS
# Use the class int() to turn a string into a integer
s = "120"
s = int(s)
print(s+1)
#121
#FLOATS
# Use the class float() to turn a string into a float
s="2.5"
s = float(s)
print(s*2)
#5.0
xxxxxxxxxx
x = "3"
int(x)
y = "2.6"
float(y)
z = "1j"
complex(z)
print(typeof(x))
# Int
# float
# complex
xxxxxxxxxx
# here is the string
stiring = 'str'
# here is the conversion
conv = int(string)
# here is the type of the conv or else if its an integer or not
type(conv)
#Output
# <class 'int'>
xxxxxxxxxx
balance_str = "1500.4"
balance_float = float(balance_str)
# print the type
print(type(balance_float))
# print the value
print(balance_float)