Skip to content

Instantly share code, notes, and snippets.

@Duroktar
Duroktar / fstring.py
Last active November 3, 2022 17:09
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