ShriRam Changed status to publish August 21, 2023
class India():
def capital(self):
print(“New Delhi is the capital of India.”)
def capital(self, scity):
print(“New Delhi is the capital of India.”, scity)
cap=India();
cap.capital()
cap.capital(“Jaipur”)
ShriRam Changed status to publish August 21, 2023