Advertisement
mfx28

Untitled

Jun 6th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. def ver_especial(input):
  2.     especial = 0
  3.     lista_especial = "a b c d e f g h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 1 2 3 4 5 6 7 8 9 0 ' ' ! # - * + & % @ _".split() #NAO PODE VER EM CASA
  4.     for char in input:
  5.         if char in lista_especial:
  6.             especial += 1
  7.     if especial > 2:
  8.         return True
  9.     else:
  10.         return False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement