forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiscSamples.py
More file actions
40 lines (31 loc) · 698 Bytes
/
miscSamples.py
File metadata and controls
40 lines (31 loc) · 698 Bytes
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
def one():
"""comment"""
pass
def two():
value = """a doc string with single and double quotes "This is how it's done" """
pass
def three():
"""a doc string with single and double quotes "This is how it's done"
Another line
"""
pass
def four():
'''a doc string with single and double quotes "This is how it's done" '''
pass
def five():
'''a doc string with single and double quotes "This is how it's done"
Another line
'''
pass
def six():
""" s1 """ """ s2 """
pass
def seven():
value = """ s1 """ """ s2 """
pass
def eight():
''' s1 ''' ''' s2 '''
pass
def nine():
value = ''' s1 ''' ''' s2 '''
pass