Last active
November 11, 2023 03:43
-
-
Save raganmd/491f3a8203e35bdb544a84afa3b847ab to your computer and use it in GitHub Desktop.
HQ-TD-Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
par_map = {} | |
target = op("constant2") | |
for each_par in target.pars('name*'): | |
par_map[each_par.val] = f"value{tdu.digits(each_par.name)}" | |
print(par_map) | |
target.store("par_map", par_map) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment