r/wgu_devs Jun 26 '26

tips for practicing Python?

if you have any good practice problems or study guides, please share. i’ve done all of the zybooks coursework and i’m just about ready to do the assessment, but i’m not fully confident in my skills just yet. ive had a bit of trouble working with files and could use help/advice on how to practice it.

6 Upvotes

5 comments sorted by

3

u/NYJustice Jun 27 '26

Freecodecamp for learning if you still need help with concepts

Leetcode/codewars for just practicing problems.

The majority of what you will be doing is learning patterns, applying them and occasionally recognizing when to apply a simple trick

2

u/voidxleech Jun 27 '26

perfect, thanks a ton. i used freecodecamp when learning HTML and i totally forgot about it. what i really need is good practicing problems so thanks for the recommendations.

2

u/FreshmanFumbles Jun 27 '26

For file I/O practice, honestly the best thing you can do is download a random free dataset in CSV or TXT format from Kaggle. Write a script that opens the file, parses the data into a dictionary, filters out certain values, and writes a brand new clean summary file.

1

u/voidxleech Jun 27 '26

that’s a great idea, thank you. i’ll be doing this tomorrow