In the same style as Giampaolo RodolĂ ' answer but as one liner, case insensitive and without having to match the whole process name, in windows you would have to include the .exe
suffix.
[x.kill() for x in psutil.process_iter() if 'ichat' in x.name().lower()]