Tuesday, May 2, 2023

INPUT :

 print("a<b")

a=int(input("Enter the number a="))

b=int(input("Enter the number b="))

a=(a<b)

print("\t\t\t\t",a)



print("a>b")

a=int(input("Enter the number a="))

b=int(input("Enter the number b="))

a=(a>b)

print("\t\t\t\t",a)

OUTPUT :


a<b

Enter the number a=5

Enter the number b=4

                                 False

a>b

Enter the number a=5

Enter the number b=4

                                 True



CHATBOT USING TKINTER

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