This commit is contained in:
2025-03-06 07:02:40 +08:00
parent 9cad8f4a9d
commit 60b9410584
6 changed files with 4 additions and 9 deletions

View File

@@ -1,2 +1,2 @@
parameter=0
parameter = 0
print(f'hello world {parameter}')

View File

@@ -4,4 +4,4 @@ parameter_array = [1, 2, 3, 4]
guan.make_sh_file_for_bsub(sh_filename='a', command_line='python a.py', cpu_num=1, task_name='task', queue_name='score', cd_dir=0)
guan.copy_py_sh_file_and_bsub_task(parameter_array, py_filename='a', old_str_in_py='parameter=0', new_str_in_py='parameter=', sh_filename='a', bsub_task_name='task')
guan.copy_py_sh_file_and_bsub_task(parameter_array, py_filename='a', old_str_in_py='parameter = 0', new_str_in_py='parameter = ', sh_filename='a', bsub_task_name='task')