This commit is contained in:
2024-07-17 17:49:53 +08:00
parent 797149d7db
commit df674318ca
5 changed files with 15 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
def run(parameter_array):
for parameter in parameter_array:
print('hello world'+' '+str(parameter))
parameter=0
parameter_array = [parameter]
run(parameter_array)