Book Image

Python GUI Programming Cookbook

By : Burkhard Meier
Book Image

Python GUI Programming Cookbook

By: Burkhard Meier

Overview of this book

Table of Contents (18 chapters)
Python GUI Programming Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

How to use StringVar()


There are built-in programming types in tkinter that differ slightly from the Python types we are used to programming with. StringVar() is one of those tkinter types.

This recipe will show you how to use the StringVar() type.

Getting ready

We are learning how to save data from the tkinter GUI into variables so we can use that data. We can set and get their values, very similar to the Java getter/setter methods.

Here are some of the available types of coding in tkinter:

strVar = StringVar()

# Holds a string; the default value is an empty string ""

intVar = IntVar()

# Holds an integer; the default value is 0

dbVar = DoubleVar()

# Holds a float; the default value is 0.0

blVar = BooleanVar()

# Holds a Boolean, it returns 0 for false and 1 for true

Note

Different languages call numbers with decimal points, floats, or doubles. Tkinter calls a DoubleVar for what in Python is called a float datatype. Depending on the level of precision, floats and double data can...