I’m getting close to my final exams so most of my time will go towards studying. Accordingly, expect a hiatus from blog postings.

What I did

What I Learned

import io
from contextlib import redirect_stdout

f = io.StringIO()
with redirect_stdout(f):
    do_something(my_object)
out = f.getvalue() 
 find . -type f -name '*.Identifier' -delete
df[(df.item == 'Hamburger') & (df.quantity == 1)]

What I will do next