Skip to content

Instantly share code, notes, and snippets.

View Bennyelg's full-sized avatar

Benny Elgazar Bennyelg

View GitHub Profile
@Duroktar
Duroktar / fstring.py
Last active January 2, 2025 19:42
f-string like behavior in Python 2
# -*- coding: utf-8 -*-
"""Python2 f-string like behavior"""
from __future__ import print_function
import inspect
import re
class F(object):
"""String formatter based on Python 3.6 'f' strings