summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_16b.txt
blob: e917516fe22f36dc6aec8acfe6a4e6f7a727ff1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---input---
f"{i}:{d[i]}"

---tokens---
'f'           Literal.String.Affix
'"'           Literal.String.Double
'{'           Literal.String.Interpol
'i'           Name
'}'           Literal.String.Interpol
':'           Literal.String.Double
'{'           Literal.String.Interpol
'd'           Name
'['           Punctuation
'i'           Name
']'           Punctuation
'}'           Literal.String.Interpol
'"'           Literal.String.Double
'\n'          Text.Whitespace