+ 2
How to assign string in any number ??
Like If I have to give a code to a user- 'abcde' So, that it converted into 01234 and respectively to the numbers when alphabets increase !
9 Answers
+ 4
It worked
Really it worked !
Thank a lot, you both was so helpful, I was searching it for ages đđ
I finally get it.
Thank you gentlemen!
+ 3
word = 'abcde'
s = ''
for letter in word:
s+=str(ord(letter)-ord('a'))
print(s)
+ 2
Just a min.
Lem'me check this one
I have been wondering for months , now I feeling that I have an idea now from this.
Thank you so much!
+ 1
Well, what about 'amde' ? It's also 01234, how are you planning to know which is which ?
+ 1
Right !
Never thought before....
Ok just tell from a to e...
I use spaces in future! !
+ 1
You can dm me if you need more help
+ 1
I'm just born in learning coding, I surely need it.
dm- ??
+ 1
Direct message, like sending me a private message throught sololearn
+ 1
I will do it for sure !