this is my piece of code
run_command("clear")
print("Initializing Scraper .........")
time.sleep(2)
username = input("Enter your instagram Username : ")
password = input("Enter your instagram Password : ")
targeted_account = input("Username of account which needs to be scraped : ")
print("Running Scraper...")
time.sleep(2)
command = "instagram-scraper {victim} -u {username} -p {password}"
run_command("command")
i want python to run the command with those variables and i cant figure out how to do that.