I have an integer in my code and want to connect it with other integers.
str1 = ''
int1 = 4
int2 = 16
int3 = 32
int4 = 64
int5 = int4 / int3
int6 = int2 / int1
str1 += str(int5)
str1 += str(int6)
print(str1)
now the output would be 2.04.0, but i want it to be 24. How do i remove the .0?