diff --git a/SpeakingRobort.py b/SpeakingRobort.py new file mode 100644 index 00000000..02d8e219 --- /dev/null +++ b/SpeakingRobort.py @@ -0,0 +1,8 @@ +import os + +if __name__ == '__main__': + print("Welcome to RoboSpeaker Created by Mustafa") + while True: + x = input("Enter what you want me to Speak: ") + command = f"say {x}" + os.system(command)