Example i have 2 lists.
import string
character1= list(string.punctuation)
password=['a','b','1','@']
if(character1 in password):
print("Error! Because you have a special character/characters in your password.Try again")
else:
pass
How can i create a program like this? It isn't work in jupyter. Thanks for helping!