open("usernames.txt", "r")
open("passwords.txt", "r")
with open("usernames.txt", "r") as users:
usernames = users.readlines()
with open("passwords.txt", "r") as user_passwords:
passwords = user_passwords.readlines()
print(usernames)
print(passwords)
i currently have this for my code, but it outputs it like this tenn\n
i need to have it like this tenn