Please when making a password validator in Python, how do I make the user input mixture of letters and characters | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Please when making a password validator in Python, how do I make the user input mixture of letters and characters

Python validator

19th Mar 2020, 9:01 AM
Emmanuel Anozie
Emmanuel Anozie - avatar
1 Answer
+ 3
Just take the input as a string. String can hold any characters, be it letters(eg. A,a,b), digit(eg.1,2,45) or special characters (eg.@,#,₹)
19th Mar 2020, 9:07 AM
Arsenic
Arsenic - avatar