Python 2.8 : String conversion
Now continue with our code and we will have to reactivate our questions and put age in comment same as name well I'll clean up my code we had converted strings to int now here we're going to convert int to string if I run my program you'll see that this doesn't work simply because at this level age is string and it is not addable with int if I run my code you see there is an error and to solve the problem we have to add a solve the problem we have to add an int in front of age well that's how we do the conversion and I rerun my code toto send everything works normally now the conversion to give if I put anything at the level of age so I will rerun my code and if I put abcd there is an error because age is converted into int and here we have added the strings of characters of which we have not only added the numbers but also the digits so it is not found and in the rest of the program we will see how to manage the exceptions and the errors.