Test.py 238 B

123456789101112131415
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. Created on Mon Oct 7 09:59:23 2019
  5. @author: thorstensteuer
  6. """
  7. class Test:
  8. def __init__(self):
  9. self.name=Thorsten
  10. def say_name(self):
  11. print("Hallo"+self.name)