having a brain block... if I have a function that ...
# python
c
having a brain block... if I have a function that returns a dict, how do I get just the one specific key from the function... it's obviously not myfunc().get("bla"), but something on those lines?
b
@crooked-sunset-90921 assign the function call to a variable and then use
var.get("blah")
?
c
Yeah was going for a one liner 🙂 Thanks, solved another way