+ 3
[SOLVED] What is the problem in my program ?
5 Antworten
+ 4
SoloLearn doesn't support "special characters".
+ 3
In line 12 & 14, use elif instead of if
and in line 13 & 17, replace e with c and vice-versa.
+ 2
@blue bro I did it's working fine for conso and vovel but not for special chr.
+ 2
@chrizzhigh
I didn't understand bro 😅
+ 1
i think you want to perform your operation on every character from the input seperatly so you could make a for loop to iterate over ever char and then call your code
for c in inputstring:
#your code here