I have seen a lot of examples in here but I haven't got what I wanted. All of the examples which I have seen make Python speak only what is typed.
Ex. speaker.speak('What is your name?')
But instead of making python speak whatever is typed, I want this:
a = 2+2
speaker.speak('Your answer is',a)
How to make it speak a calculated variable. Here, it should speak Your answer is 4, but it's only speaking Your answer is.