Have you ever stopped to consider why you are writing code like that, and if it is necessary in the first place?
I think if you are spamming a lot of code that looks like:
thing = params.get('thing')
thong = params.get('thong')
...
thunk = params.get('thonk')
then you probably aren't delivering a lot of value with your code.
In fact that overly verbose code could be a liability because it has to be reviewed (possibly multiple times as people look over the code to see how values are getting assigned).