-
Consider a function foo with 1 argument But what about this case: junk = 1 All I get is the name of the variable (junk) but I want it's value. I can use the SSA form version since the name junk will be unique. |
Beta Was this translation helpful? Give feedback.
Answered by
plafosse
Feb 10, 2021
Replies: 1 comment
-
You can just use the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
psifertex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can just use the
.value
or.possible_values
on the variable object.