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