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#4 Using F Strings PROGRAM

GREETINGS TO ALL OF YOU!!

a basic code for beginner to understand f string


# f strings

# f stands for fast
a="vaibhav"
b="samayra"
c=f"this is {a} and she is my sister and her name is {b}!!"
print(c)



thank you!!!

Comments