1234567891011
# Welcome to my workspaceclass SohomsSyntax: def __init__(self): self.name = "Sohom Mallick" def print_vision(self): print("Curious about technology, passionate about building.")if __name__ == "__main__": sohom = SohomsSyntax() sohom.print_vision()