Skip to main content

Posts

Showing posts from April, 2020

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=...

Hospital Management Voice recognition Using Python

Folder Path: Sqlite Database: Python Code: index.py from tkinter import* import tkinter import webbrowser import sqlite3 root=Tk() root.geometry("1600x800+0+0") root.title("SECURING PATIENT INFORMATION IN MEDICAL DATABASE") w = Label(root,text="SECURING PATIENT INFORMATION IN MEDICAL DATABASE",bg="blue",fg="white",height=2,width=1000,font="Arial 20 bold").pack(side=TOP) canvas = Canvas(root, width = 600, height = 330) canvas.pack() img = PhotoImage(file="image/3.png") canvas.create_image(5,5, anchor=NW, image=img) p=" Data security (patient privacy) has become especially critical to the healthcare industry with the adoption of electronic health records (EHR).\nIf you are trying to figure out what is the most secure programming language, you are probably on the wrong path. All programming\n languages are not secure. An application becomes secure when the develope...

Digit recognition Using Python

Python Code: from tkinter import* import tkinter root=Tk() root.geometry("1600x800+0+0") root.title("DIGIT RECOGNIZATION") w = Label(root,text="DIGIT RECOGNIZATION",bg="blue",fg="white",height=2,width=1000,font="Arial 20 bold").pack(side=TOP) canvas = Canvas(root, width = 1350, height = 600) canvas.pack() img = PhotoImage(file="image/test.png") canvas.create_image(5,5, anchor=NW, image=img) # Doctor Menu Start def adminsignup(): filewin = Toplevel(root) filewin.title("DIGIT RECOGNIZATION") w = Label(filewin,text="DIGIT RECOGNIZATION",bg="blue",fg="white",font="Arial 10 bold").pack(side=TOP) list1 = ["ID :", "PASSWORD :"] L1=Label(filewin,text=list1[0],font="Arial 12 bold") L1.pack() E1 = Entry(filewin, bd =5) E1.pack() L2=Label(filewin,text=list1[1],font="Arial 12 bold") L2.p...

Cricket Score analytics Using Python

DataSet: First open Ms Excel Declare Field name and Data Next save excel file"cricketsports.csv" its need save only comma delimiter(CSV) File Folder Path: First create project folder cricket folder inside create folder "Match"(Its a function folder) Program Code: Folder cricket->cricket.py import match from match.teamA import* match.teamA.teamAScore() match.teamA.teamAattendbat() match.teamA.teamAattendball() Folder cricket->match->teamA.py def teamAScore(): import pandas as pd df=pd.read_csv("cricketsports.csv") x=df["Team A "].sum() y=120 print("Team A Score:",int(x)) def teamAattendbat(): import pandas as pd df=pd.read_csv("cricketsports.csv") from sklearn.metrics import accuracy_score batattend=df["batattend"] batA=df["batA"] print('Bating Accuracy:',accuracy_score(batattend,batA)) def teamAattendball(): import pandas as pd df=pd....

PSK TECHNOLOGY PYTHON PROJECTS

Cricket Score analytics Using Python Digit recognition Using Python Hospital Management Voice recognition Using Python Money Transfer Using Python Create Perfect Desktop UI Application Using Python Create Mobile Drawer Desktop UI Application Using Python Create Different Login Design Using Python Code & Concept Copyrights@Saravanakumar from psktechnology