-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathprompt1.py
More file actions
29 lines (25 loc) · 1.59 KB
/
prompt1.py
File metadata and controls
29 lines (25 loc) · 1.59 KB
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
r'''Module docstring
Some text followed by code sample:
>>> for a in foo(2, b=1,
... c=3):
... print(a)
0
1
'''
r : source.python, storage.type.string.python, string.quoted.docstring.raw.multi.python
''' : punctuation.definition.string.begin.python, source.python, string.quoted.docstring.raw.multi.python
Module docstring : source.python, string.quoted.docstring.raw.multi.python
: source.python, string.quoted.docstring.raw.multi.python
Some text followed by code sample: : source.python, string.quoted.docstring.raw.multi.python
: source.python, string.quoted.docstring.raw.multi.python
>>> : keyword.control.flow.python, source.python, string.quoted.docstring.raw.multi.python
for a in foo(2, b=1, : source.python, string.quoted.docstring.raw.multi.python
: source.python, string.quoted.docstring.raw.multi.python
... : keyword.control.flow.python, source.python, string.quoted.docstring.raw.multi.python
c=3): : source.python, string.quoted.docstring.raw.multi.python
: source.python, string.quoted.docstring.raw.multi.python
... : keyword.control.flow.python, source.python, string.quoted.docstring.raw.multi.python
print(a) : source.python, string.quoted.docstring.raw.multi.python
0 : source.python, string.quoted.docstring.raw.multi.python
1 : source.python, string.quoted.docstring.raw.multi.python
''' : punctuation.definition.string.end.python, source.python, string.quoted.docstring.raw.multi.python