Wednesday, August 9, 2023

Bio Data Program Coding

 m=str(input("enter the name:"))

n=str(input("enter the d.o.b:"))

k=str(input("enter the father name:"))

p=str(input("enter the mother name:"))

t=str(input("enter the qualification"))

z=str(input("enter the experience:"))

d=int(input("enter mobile number:"))

e=str(input("enter email.id-"))

print("name :",m)

print("d.o.b:",n)

print("fathername:",k)

print("mother:",p)

print("qualification:",t)

print("experience:",z)

print("mobile number:",d)

print("email.id:",e)




OUTPUT:






CHATBOT USING TKINTER

  CODE : from tkinter import * # Create main window window = Tk() window.title("Healthcare Chatbot") window.geometry('600x600...