Create a function named to_timezone that takes a timezone name as a string. Convert starter to that timezone using pytz timezones and return the new datetime.
def to_timezone(arg):
timezone = pytz.timezone(arg)
return starter.astimezone(timezone)