From b9825a2d27b8f9c4bfa8bf8f4eb2a41ea699aa29 Mon Sep 17 00:00:00 2001 From: Syed Mustafa Hassan <98483655+Mustafa-Hassan2001@users.noreply.github.com> Date: Mon, 11 Mar 2024 00:48:00 +0500 Subject: [PATCH] Create SpeakingRobort.py --- SpeakingRobort.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 SpeakingRobort.py 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)