summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_16a.txt
blob: cbd4d14b85df8c3a05a8a1e22268515d7e379e12 (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.Single
'{'           Literal.String.Interpol
'i'           Name
'}'           Literal.String.Interpol
':'           Literal.String.Single
'{'           Literal.String.Interpol
'd'           Name
'['           Punctuation
'i'           Name
']'           Punctuation
'}'           Literal.String.Interpol
"'"           Literal.String.Single
'\n'          Text