print("Input was not one of the valid choices")
            choice_input = input(
                "Select the correct rap genius url for the artist: ")

        if int(choice_input) == new_search_choice:
            continue
        artist_url = None
        for i in range(int(choice_input)):
            artist_url = artist_urls.pop()
        if artist_url is not None:
            artist_name = str.partition(artist_url, "/artists/")[2]
            rap_genius_artist = Artist(artist_name, artist_url)

            create_word_clouds_for_artist(rap_genius_artist)
            # print out choices and ask user to select which word cloud to present
            print("A: " + rap_genius_artist.get_artist_name() + " Word Cloud")
            choice = 1
            for album in rap_genius_artist.get_albums():
                print(
                    str(choice) + ": Album \"" + album.get_album_name() +
                    "\" word cloud")
                choice = choice + 1

            new_artist_choice = choice
            print(str(choice) + ": Search for new artist")
            end_choice = choice + 1
            print(str(end_choice) + ": End program")
            next_choice = None
            choice_number = 0

            while True: