How could I add a list of profiles? Right now I have to write them one by one. I know that it's possible using profile_list = ['profile1','profile2','profile3', ...]but I don't know how to implement it in the code.
``from instaloader import Instaloader, Profile
import instaloader
from instaloader.structures import Post
list_of_profile = ['']
for list_element in list_of_profile:
L = Instaloader()
profile = Profile.from_username(L.context, list_element)
posts_sorted_by_likes = sorted(profile.get_posts(), key=lambda post: post.likes, reverse=True)
quant = 3
for elements in range(quant):
L.download_post(posts_sorted_by_likes[elements], list_element)