Skip to content

Instantly share code, notes, and snippets.

View dannysepler's full-sized avatar

Danny Sepler dannysepler

View GitHub Profile
@dannysepler
dannysepler / demo.md
Created February 24, 2023 21:00
New python syntax

What's new in Python?

Fancy debugging print statements (py3.8)

You can now print out a variable even easier!

# Before
my_var = "hi"
print(f"my_var={my_var}")