Thats my code for a bot that answers 6 or 7 questions from another python script My question is How can I increment the Account1, so that each time i launch the script, it changes name like Account2, Account3
import subprocess
import pyautogui
import sys
import time
p = subprocess.Popen([sys.executable, 'questions.py'],
stdin=subprocess.PIPE)
p.stdin.write(b'N\nG\n0\na\n')
p.stdin.flush()
time.sleep(15)
p.stdin.write(b'\n')
p.stdin.flush()
p.stdin.write(b'Account1\n')
p.stdin.flush()
p.stdin.write(b'white\n')