16 lines
214 B
Python
16 lines
214 B
Python
# import pandas
|
|
|
|
|
|
def function():
|
|
pass
|
|
|
|
|
|
print("test")
|
|
|
|
|
|
class testclass(object):
|
|
"""docstring for testclass"""
|
|
def __init__(self, arg):
|
|
super(testclass, self).__init__()
|
|
self.arg = arg
|