Skip to main content

Code #11 Speak Function

                GREETINGS TO ALL YOU!!!! This is text to speak converter Function from  win32com.client  import  Dispatch def   speak (str):     speak = Dispatch( "SAPI.spVoice" )     speak.Speak( str ) if  __name__  ==   "__main__" :     speak("# your text goes here")

Code#2 Printing TABLE by taking input from user PROGRAM

 GREETINGS TO ALL OF YOU!!

code for printing table 

i=0
n=int(input("enter your number\n"
"for your table "))
while i<10:
i+=1
print(n,'x',i,'=',n*i)

thank you!!!

Comments