How much python is required to start developing GUI with Tkinter

How much python is required to start developing GUI with Tkinter

Concepts Should you know before Starting GUI development

How much python should I know before start developing GUI with Tkinter

python_logo_small.png

If you want to learn how much python is required to start developing Graphical User Interface (GUI) with python then you are in the right place.

First let see what is tkinter and why to user tkinter.

Tkinter is the GUI library for python which helps us to create amazing graphical user interface using a programming language called python. Now, if you thinking why to learn tkinter? Learn because if it fast, simple and easy to use. Tkinter is all about python.

Talk is cheap show me the code. Without wasting your time I am going to show you how much python is required to start developing GUI with Tkinter.

Basics for python is enough to get start with GUI development.

Basics Concepts

  1. Variables and comments

  2. Data types of python

  3. Modify String

  4. String and Arrays

  5. Type conversion

  6. Break, Continue and Pass statements

  7. Conditional statements and Switch statements

  8. Python functions

  9. Operators

  10. List and Tuple

  11. Sets and dictionary

Intermediate to Advance

  1. Class and Objects

  2. Polymorphism and Inheritance

  3. Abstraction and Encapsulation

  4. Modules and Pckages

  5. Python Date and Time

  6. Python JSON

  7. Regular expression

  8. Exceptions handling

  9. Python PIP

  10. File handling

  11. Numpy and Matplotlib library (optional for beginners)

How tkinter bare bones code looks like

from tkinter import * 

root = Tk()
root.title('Tkinter GUI - Yourname')
root.geometry('400x400')

root.mainloop()

For beginners deeply concepts is not required, if you know basics of python the you good to go for graphical user interface (GUI) development. But if you want to learn tkinter more deeply then all above concepts is required.

Here, is the flow chart or structure of concepts for python Download PDF

Your Feedback would be highly appreciated.

If you need any help or found any spelling mistakes then feel free to reach out to me at TWEETER

kentucky.png