We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
u have used too many for loops, won't it affect the speed of the program?
alphanumeric='False'
alphabetical='False'
digits='False'
lowercase='False'
uppercase='False'
s=input()
for c in s:
if(c.isalnum()):
alphanumeric='True'
String Validators
You are viewing a single comment's thread. Return to all comments →
u have used too many for loops, won't it affect the speed of the program?