Wednesday, May 3, 2023

INPUT :

a=('''Mukesh Dhirubhai Ambani is an Indian billionaire

businessman. He is the chairman and managing director

of reliance industries.''')

b=('''A Fortune Global 500 company and India's most valuable

company by market value.''')

c=('''According to Bloomberg Billionaires Index''')

d=a+""+b+""+c

print(d)



OUTPUT :

 Mukesh Dhirubhai Ambani is an Indian billionaire

businessman. He is the chairman and managing director

of reliance industries.A Fortune Global 500 company and India's most valuable

company by market value.According to Bloomberg Billionaires Index


CHATBOT USING TKINTER

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