Skip to content

Commit c80d095

Browse files
committed
Fix issues
1 parent cee21e7 commit c80d095

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

python-formatted-output/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# A Guide to the Newer Python String Format Techniques
1+
# A Guide to Modern Python String Formatting Tools
22

3-
This folder provides the code examples for the Real Python tutorial [A Guide to the Newer Python String Format Techniques](https://realpython.com/python-formatted-output/).
3+
This folder provides the code examples for the Real Python tutorial [A Guide to Modern Python String Formatting Tools](https://realpython.com/python-formatted-output/).

python-formatted-output/interpolation.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
print(f"Hello, Pythonista!")
2-
print(f"Hello, Pythonista!")
3-
4-
print(f"Single-line f-string with single quotes")
5-
print(f"Single-line f-string with double quotes")
6-
print(
7-
f"""Multiline triple-quoted f-string
8-
with single quotes"""
9-
)
10-
print(
11-
f"""Multiline triple-quoted f-string
12-
with double quotes"""
13-
)
1+
# print(f"Hello, Pythonista!")
2+
# print(f"Hello, Pythonista!")
3+
4+
# print(f"Single-line f-string with single quotes")
5+
# print(f"Single-line f-string with double quotes")
6+
# print(
7+
# f"""Multiline triple-quoted f-string
8+
# with single quotes"""
9+
# )
10+
# print(
11+
# f"""Multiline triple-quoted f-string
12+
# with double quotes"""
13+
# )
1414

1515
site = "Real Python"
1616
print(f"Welcome to {site}!")

0 commit comments

Comments
 (0)