An advisor and mediator between research and information technologies (Research IT).
A top-notch IT System Administrator and Engineer with almost 15 years of experience.
A knowledge-hungry strategist with a can-do attitude.
A creative problem-solving thinker with keen technical insights.
A penguin aficionado, passionate cook, casual gamer and dad.
An in-depth Data Analyst.
A climbing buddy.
A junior.
An expert software engineer.
A statistical mastermind.
A Super Smash Bros. champion.
import re def show_picture(string): """ Determines what kind of picture will be presented to the user :param string: string from which origin the user comes from, e.g. HR or when I sent a job application :return: correct picture """ if re.search('human ressources|hr|job application|mom', string, flags=re.IGNORECASE): #re.IGNORECASE for case INsensitivity print("www.andy-on-the.net/img/business-andy.jpg") else: print("www.andy-on-the.net/img/leisure-andy.jpg") show_picture(get.user_origin)