Skip to content

Instantly share code, notes, and snippets.

@PhMota
PhMota / fstring.py
Last active July 20, 2021 19:39 — forked from Duroktar/fstring.py
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