Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

How to decrease length of entry in tkinter

import tkinter as tk

app = tk.Tk()
app.geometry("400x200")

entryExample = tk.Entry(app,
                        width=10)

entryExample.pack(side=tk.LEFT,
                  padx=10)

app.mainloop()
Comment

make entry bigger in tkinter python

import tkinter as tk

app = tk.Tk()
app.geometry("400x200")

entryExample = tk.Entry(app)
entryExample.place(x = 10,
        y = 10,
        width=200,
        height=100)

app.mainloop()
Comment

make entry bigger in tkinter python

import tkinter as tk

app = tk.Tk()

entryExample1 = tk.Entry(app)
entryExample2 = tk.Entry(app)

entryExample1.grid(row=0,
               column=0,
               padx=10,
               pady=10,
               ipady=50)

entryExample2.grid(row=0,
               column=1,
               padx=10,
               pady=10,
               ipady=60)

app.geometry("300x200")

app.mainloop()
Comment

PREVIOUS NEXT
Code Example
Python :: how to find determinant in numpy 
Python :: how to save inputs python 
Python :: annaul sum resample pandas 
Python :: how to make a module that generates a random letter in python 
Python :: pandas split train test 
Python :: place a widget in tkinter 
Python :: print the heat map python 
Python :: python twilio certificate error 
Python :: python selenium hide log 
Python :: Python program to find Cumulative sum of a list 
Python :: pandas dataframe from multiple csv 
Python :: add trendline to plot matplotlib 
Python :: image from wikipedia module in python 
Python :: python diamond pattern 
Python :: python date + days 
Python :: check if response is 200 python 
Python :: join pyspark stackoverflow 
Python :: python3 inorder generator 
Python :: elbow method k means sklearn 
Python :: get text from table tag beautifulsoup 
Python :: poetry take the dependencies from requirement.txt 
Python :: lru cache python 
Python :: how to get sum specific columns value in machine learning 
Python :: ValueError: There may be at most 1 Subject headers in a message 
Python :: train test split python 
Python :: python saveAsTextFile 
Python :: how to change cursor on hover of button in tkinter 
Python :: key item loop list python 
Python :: how to redirect to another page in django after login 
Python :: change the style of notebook tkinter 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =