• reddawnfreedom's Activity

Commented a forum post "Understanding the function" created by reddawnfreedom
Oh this is actually great to know. I think this may have been explained prior, but I’ve gotten much
Liked a comment created by przemyslaw.daniel for forum post "Please help"
A little bit of cleaning

    def translate(phrase):
        translated, index = '', 0
        while
Commented a forum post "Not making sense" created by reddawnfreedom
That worked, thanks! So just for my understanding, was it being ignored because even though I was te
Liked a comment created by Sim0000 for forum post "Not making sense"
Line 5 of your code calls flat_list () recursively when it finds a list. But your code ignores the r
Created a forum post "Not making sense"
So I solved this with a solution I found online: def flat_list(array): if arra
Commented a forum post "Need Help" created by reddawnfreedom
Yeah that's what I was missing. I ended up doing maximum = sorted(dct.item(), key=lambda x:(-x[1], x
Liked a comment created by eugene100372 for forum post "Need Help"
sorted(dict) gives a list of keys (and works with it during the execution), not list of lists [key,v
Liked a comment created by jtexpo.official for forum post "Need Help"
Don't forget when playing with Dictionaries to use DictionaryName.items(), that and also you may hav
Created a forum post "Need Help"
Having trouble with this. It keeps stating that my string index is out of range and I dunno how to f
Liked a comment created by przemyslaw.daniel for forum post "Please help"
To make it simpler create variable index describing current position. Now in the loop increase the i
Commented a forum post "Please help" created by reddawnfreedom
dude ok that's what i couldn't figure out. I was unsure how to have an evolving index position that
Created a forum post "Please help"
I'm having extreme trouble with this challenge. I've been trying several different approaches but ge
Commented a forum post "Searching for digits" created by reddawnfreedom
That's a useful delineation between the numeric and digit functions, thanks!
Commented a forum post "Searching for digits" created by reddawnfreedom
Yeah the issymbol functions seems to work much better! I went back and changed it up however even th
Created a forum post "Understanding the function"
I was trying to solve this without the forum however I could not get the sorted function to work. My
Created a forum post "Searching for digits"
So I figured out how to do the process with the re module, however prior to that I was trying to do