Which is the best cheat sheet for a beginner (someone who is following Automate Boring stuff python to be specific ? How to search for syntax related question while coding?
-
I am asking this from a beginner perspective. Since stack overflow is not place to ask trivial beginner questions how do you guys search for when you have doubt regarding which modules to use, how to code something and to check syntax rules etc.
-
@jadenfrancis, if the Pythonista inline help is not enough, googling ”python whatever” always gives me an appropriate stackoverflow answer. :-) Failing that, this forum is beginner friendly.
-
last edited by
-
in this Example
l = re.findall(r"i[a-z]", s)
just select the lowercase ascii
-
First letter a small „i“ and the second letter is any other small letter. In my example = ['is', 'is', 'ia', 'in']