Guest User

Untitled

a guest
Sep 29th, 2025
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class NewClass:
  2. def __init__(self, value):
  3. self.st = str(value)
  4.  
  5. def __str__(self):
  6. return f"My value is {self.st}"
  7.  
  8. a = str(123)
  9. b = NewClass(123)
  10.  
  11. print(a)
  12. print(b)
Advertisement
Add Comment
Please, Sign In to add comment