summaryrefslogtreecommitdiff
path: root/comp/work/2/fstring.py
diff options
context:
space:
mode:
Diffstat (limited to 'comp/work/2/fstring.py')
-rwxr-xr-xcomp/work/2/fstring.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/comp/work/2/fstring.py b/comp/work/2/fstring.py
new file mode 100755
index 0000000..80d7d7c
--- /dev/null
+++ b/comp/work/2/fstring.py
@@ -0,0 +1,4 @@
+red = "\e[1;35m"
+normal = "\e[0;37m"
+
+print(f"{red}hello{normal}")