FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lpython/tests/parser/string1.py at main · Davidportlouis/lpython · GitHub
Davidportlouis
/
lpython
Public
forked from
lcompilers/lpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lpython
/
tests
/
parser
/
string1.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
85 lines (66 loc) · 843 Bytes
Breadcrumbs
lpython
/
tests
/
parser
/
string1.py
Copy path
File metadata and controls
85 lines (66 loc) · 843 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
F"Hello,
{
first_name
}
{
last_name
}
. You are
{
age
}
years old."
print
(
f"
{
__file__
}
executed in
{
elapsed
}
seconds."
)
"
\n
sometext
\n
anotherline
\n
"
# TODO: Support format specifiers
# print(f"{__file__} executed in {elapsed:0.2f} seconds.")
b"Some text goes here."
B"""
Multiple texts goes here.
"""
r"""
Text
"""
R"Text"
r'a\tb\nA\tB'
u"1,2,3 # comment"
u'Text'
U"Text"
fr"""Text
{
id
}
"""
Fr"Text
{
id
}
"
fR"Text
{
id
}
"
FR"Text
{
id
}
"
rf"Text
{
id
}
"
rF"""
Text
{
id
}
"""
Rf'Text
{
id
}
'
RF"Text
{
id
}
"
br"Text"
Br"""
Text
"""
bR"Text"
BR"Text"
rb"Text"
rB"""
Text
"""
Rb'Text'
RB"Text"
rf'\N
{
AMPERSAND
}
'
(
f"Text
{
a
}
,
{
b
}
"
f"Text
{
a
}
"
)
(
f"Text
{
a
}
,
{
b
}
"
"Text"
)
(
"Text"
f"
{
b
}
, Text"
)
(
f"Text
{
a
}
"
r"Text"
)
(
r"Text"
r"Text"
)
(
r"Text"
"Text"
)
(
r"Text"
f"
{
a
}
Text"
)
(
b"Text"
b"Text"
)
r'\n'
r"""
Text
123\n\t
"""
rb'\n'
rf'\n'
b'
\n
'
b'''
\n
\\
n'''
Back
|
FazBrowse Home
|
New Git URL