47 lines
644 B
Python
47 lines
644 B
Python
json = {
|
|
'a': 1,
|
|
"b": 2,
|
|
"c": 3,
|
|
"d": 4,
|
|
}
|
|
print("file name sample.py")
|
|
|
|
|
|
def sample_fun():
|
|
print(123)
|
|
print()
|
|
|
|
|
|
####################################################
|
|
|
|
|
|
print("hello, world, ")
|
|
print()
|
|
print("hello, world, ")
|
|
print("hello, world, ")
|
|
json = {
|
|
"a": 1,
|
|
"b": 2,
|
|
"c": 3,
|
|
"d": 4,
|
|
}
|
|
print("file name sample.py")
|
|
if True:
|
|
print("hello, world")
|
|
|
|
|
|
####################################################
|
|
|
|
####################################################
|
|
json = {
|
|
"a": 1,
|
|
"b": 2,
|
|
"c": 3,
|
|
"d": 4,
|
|
}
|
|
print("file name sample.py")
|
|
if True:
|
|
print("hello, world")
|
|
|
|
## add test
|