Skip to main content

Posts

SK Political Analytics-About us

புலவர் பழனிசாà®®ி (à®®ாவட்ட இலக்கிய அணி செயலாளர்) HOME            ABOUT US         OUR WORK        IMPACT

SK Political Analytics-Home

புலவர் பழனிசாà®®ி (à®®ாவட்ட இலக்கிய அணி செயலாளர்) HOME          ABOUT  US       OUR WORK        IMPACT
HOME         ABOUT US         OUR WORK        IMPACT

Create Different Login Design Using Python

Design 1: Login Form: Login Form Code:(Copy the code) from tkinter import* root=Tk() root.geometry("300x600+0+0") root.title("Login") layout1=Label(root,bg="#6666FF",height=7,width=37) layout1.pack() layout2=Label(root,bg="white",height=25,width=37) layout2.place(x=0,y=140) canvas = Canvas(root, width = 50, height = 48,bg="#6666FF") canvas.place(x=150,y=40) img = PhotoImage(file="image/User-48.png") canvas.create_image(5,5, anchor=NW, image=img) Login=Label(root,text="Login",bg="#6666FF",fg="white",font="Arial 14 bold") Login.place(x=50,y=50) Email=Label(root,text="Email",bg="white",fg="#FF3399",font="Arial 10") Email.place(x=50,y=200) E1=Entry(root,fg="gray",relief=FLAT) E1.place(x=50,y=250) E1.focus() C = Canvas(root, height=1, width=200,bg="red") line = C.create_line(0,0,10000,100,fill='red'...

Create Mobile Drawer Desktop UI Application Using Python

Design: Python Code:(Copy the code) from tkinter import* root=Tk() root.geometry("300x600+0+0") root.title("Drawer News") root.resizable(0,0) layout1=Label(root,bg="#6666FF",height=4,width=37) layout1.pack() layout2=Label(root,bg="white",height=27,width=37) layout2.place(x=0,y=80) ####################################################################################### ######################################################################################## def drawer(): file=Toplevel(root) file.geometry("300x600+0+0") file.resizable(0,0) file.title("Drawer News") layout1=Label(file,bg="#6666FF",height=20,width=37) layout1.pack() layout2=Label(file,bg="white",height=27,width=37) layout2.place(x=0,y=150) name=Label(file,text="Saravana Kumar.P",fg="white",font="Arial 10 bold",bg="#6666FF") name.place(x=10,y=80) mail=Label(file,text="sar...

Create Perfect Desktop UI Application Using Python

Design: Python Code:(Copy the code) from tkinter import* root=Tk() root.geometry("1350x700+0+0") root.title("Drawer News") root.resizable(0,0) root.configure(background='white') orangelayout=Label(root,height=35,width=84,bg="orange") orangelayout.grid(row=0,column=1) greenlayout=Label(root,height=35,width=88,bg="#009966") greenlayout.grid(row=0,column=8) red2layout=Label(root,height=18,width=28,bg="#FF3333") red2layout.place(x=0,y=0) frame=Label(root,height=28,width=155,bg="white") frame.place(x=50,y=80) whitebg=Label(root,height=28,width=78,bg="white") whitebg.place(x=50,y=80) redbg=Label(root,height=28,width=78,bg="#FF3333") redbg.place(x=679,y=80) titlebg=Label(root,height=3,width=22,bg="#009966") titlebg.place(x=50,y=80) title=Label(root,text="INSECT",fg="white",font="Arial 12 bold",bg="#009966") title.place(x=120,y=100) icon= PhotoImage(f...

Money Transfer Using Python

Python code:(copy the code) # !/python36 from tkinter import* import tkinter import webbrowser import sqlite3 root=Tk() root.geometry("1600x800+0+0") root.title("MONEY TRANSFER AND EXCHANGE") #---------------------------Index Page Start-------------------------------------# w = Label(root,text="MONEY TRANSFER AND EXCHANGE",bg="teal",fg="white",height=2,width=1000,font="Arial 20 bold").pack(side=TOP) canvas = Canvas(root, width = 600, height = 600) canvas.pack() img = PhotoImage(file="image/3.png") canvas.create_image(5,5, anchor=NW, image=img) #---------------------------Index Page End-------------------------------------# #---------------------------Menu Bar Start-------------------------------------# def countryname(): filewin = Toplevel(root) filewin.title("MONEY TRANSFER AND EXCHANGE") w = Label(filewin,text="MONEY TRANSFER AND EXCHANGE",bg="blue",fg=...