Nov-25-2019, 04:22 PM
Why does the following program output "python is hard" ?
class t: def __init__(self): self.__t="python is hard" t=t() print(t._t__t)