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#7 Fibbuonacci series

 GREETINGS TO ALL OF YOU!!!!!!!



We will be looking to the most tricky problem that is Fibbuonacci series 


n=int(input("enter the number till you need Fibbuonacci series: "))

first_number,second_number=0,1
print(first_number,second_number,end=" ")

for i in range (1,n-1):
print(first_number+second_number,end=" ")
first_number,second_number=second_number,(first_number + second_number)


 thank you!!!

Comments