Forum Archive

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?

jadenfrancis

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.

mikael

@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.

brumm

Python 3.x cheat sheet

sam rod

in this Example

l = re.findall(r"i[a-z]", s)

just select the lowercase ascii

brumm

First letter a small „i“ and the second letter is any other small letter. In my example = ['is', 'is', 'ia', 'in']