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

GUI (With Python) # 1

                  GREETINGS TO ALL OF YOU!!!!


Welcome everyone to our very new logic building program

Where We are Going To Start Our New Journey😎😎 

Series Of GUI With Python#1


# Getting Start With The Basics Of GUI (Graphic User Interface)

Python provides various options for developing graphical user interfaces (GUIs). Most important are listed below.

Tkinter − Tkinter is the Python interface to the Tk GUI toolkit shipped with Python. We would look this option in this chapter.

wxPython − This is an open-source Python interface for wxWindows http://wxpython.org.

JPython − JPython is a Python port for Java which gives Python scripts seamless access to Java class libraries on the local machine http://www.jython.org.

 # In This Series We are Going To have Our GUI With Tkinter Module

# Lets See A basic GUI window With Tkinter Module

# Code for it :-

import Tkinter
top = Tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()

For This Blog Post That's It 

See You All! 

This Blog Post Had Referred To Very Nice

Website Its Link Is Given Please Check It OUT!!!

https://www.tutorialspoint.com/python/python_gui_programming.htm

MY INSTGRAM ID:

https://www.instagram.com/vaibhavsingh_star/




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