Wednesday, May 3, 2023

INPUT :

 print("\tRemove whitespace")

a='''     Mukesh Dhirubhai Ambani (born 19 April 1957)

is an Indian billionaire businessman, he is the 

chairman and managing director of Reliance Industries     '''

print(a.strip())


OUTPUT :

       Remove whitespace

Mukesh Dhirubhai Ambani (born 19 April 1957)

is an Indian billionaire businessman, he is the 

chairman and managing director of Reliance Industries




CHATBOT USING TKINTER

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