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")

About Us

 Greetings To All Of you 

Hello, Hi Everyone

I Am The Author Of this Blog, My Name Is Vaibhav Singh From India And I am Student Of Python Programming Language I Would Be Glade To Share My Knowledge And Take Knowledge From You All 

This Blog Is For Those Who Wants To Learn Python Codes And I Have Tried To Make It As Simple As I Can 

You Just Read The Python Program And Copy It And a Paste it In Your Program 

In This Blog You Will Be Getting Some Intresting Python Program For Building Your Logic

You Will Be Having Some GUI Too Diagram ect.....

Will Be Requesting You To Be Linked With Us ..............


Thank you

 And Please Fill Free To Contact Us ..... 

Comments

Popular posts from this blog

Code#3 Factorial problem, Recursion and Iterative Method PROGRAM

GREETINGS TO ALL OF YOU!!  Factorial problem, Recursion and Iterative Method   #  Recursion Method  def fac2 (n): if n== 1 : return 1 else : return n*fac2(n- 1 ) number = int ( input ( "enter your number" )) print ( 'factorial of your given number by recursion method :' ,fac2(number)) # Iterative Method  def fac1 (n): fac= 1 for i in range (n): fac=fac*(i+ 1 ) return fac number= int ( input ( "enter your number: " )) print ( "factorial of your given number by iterative method:" ,fac1(number))

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")