gosti = ["Dima", "Kira", "Petya"]
text = '. Приходите в гости!'

def gst():
    for i in gosti:
        print i + text

gst ()

if 'Vova' not in gosti:
   print 'К сожалению ' + 'Vova' + ' прийти не сможет.'  