Convertir INT en chaîne à l'aide de cordes F

a = 10
print(type(a))
 
# converting int into string
convert_a = f'{a}'
print(type(convert_a))
Outrageous Ostrich