mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 13:53:01 +00:00
11 lines
229 B
Python
11 lines
229 B
Python
numb=0;
|
|
print("Type your super awesome password")
|
|
i=raw_input()
|
|
i.lower()
|
|
for letters in i:
|
|
l=ord(letters)-ord('a')+1
|
|
for count in range(l):
|
|
numb=numb*10+1
|
|
#print numb
|
|
print ("Take this bitch!! : "+str(numb))
|