()
| 9 | |
| 10 | |
| 11 | def welcome(): |
| 12 | print(">") |
| 13 | print("Welcome to Autobot created by Vijay.Use exit or quite to exit.") |
| 14 | text = "Welcome to Autobot created by Vijay" |
| 15 | speak(text) |
| 16 | time.sleep(1) |
| 17 | text = "Use exit or quite to exit." |
| 18 | speak(text) |
| 19 | print("<") |
| 20 | |
| 21 | |
| 22 | def speak(text): |
no test coverage detected