7 lines
196 B
Python
7 lines
196 B
Python
|
|
class MyService(object):
|
||
|
|
def GetData(self, value):
|
||
|
|
return "hello" + value
|
||
|
|
AAA=["hello","fdfdf","fdfd"]
|
||
|
|
BBB={"hello":"12343","fdfd":"4324234"}
|
||
|
|
def MyFunction(name):
|
||
|
|
return "Bye Bye " + name
|