mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-04-05 04:16:47 +00:00
10 lines
343 B
Python
10 lines
343 B
Python
import pyttsx3
|
||
|
||
questiontext= "Did you know?"
|
||
answertext= "Australia is wider than the moon. The moon sits at 3400km in diameter, while Australia’s diameter from east to west is almost 4000km."
|
||
|
||
engine = pyttsx3.init()
|
||
engine.save_to_file(questiontext, 'test1.mp3')
|
||
engine.save_to_file(answertext, 'test2.mp3' )
|
||
engine.runAndWait()
|