xxxxxxxxxx
#The string
number_string = input('Type a number')
result = int(number_string) + 2
print(int(result))
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
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)