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

STAR pattern printing #1

 GREETINGS TO ALL OF YOU!!!!!!



WE WILL BE DOING  OUR FIRST PATTERN PRINTING PROGRAM


SO LET'S START WITH IT !!

WE PRINT OUR PATTER IN THIS WAY

* * * * * *

* * * * * * 

* * * * * *

* * * * * * 


n=int(input("enter the number:..."))
for i in range(1,n+1):
for j in range(1,n+1):
print("*",end=" ")
print(" ")

ACCORDING TO YOUR INPUT THE NUMBER OF ROWS AND COLUMN


Comments