Makakuha ng mga sagot sa iyong mga tanong mula sa komunidad ng IDNStudy.com. Sumali sa aming interactive na platform ng tanong at sagot para sa mabilis at eksaktong tugon mula sa mga propesyonal sa iba't ibang larangan.

Create 3 arrays that will hold 2 user's credentials:
email
username
passsword


Sagot :

Answer:

# Array for emails

emails = ["[email protected]", "[email protected]"]

# Array for usernames

usernames = ["user1", "user2"]

# Array for passwords

passwords = ["password1", "password2"]

Explanation:

You did not specify any programming language, so I just gave the Arrays.