Python Forum
Variable definitions inside loop / could be better? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Variable definitions inside loop / could be better? (/thread-41402.html)



Variable definitions inside loop / could be better? - gugarciap - Jan-09-2024

Dear Python Community,

I use Python a lot for my company projects, and I ussually do some taslks that seems to
repeats every time. For instance,I use to define vars prior to a loop, so I can use them
a few lines later in the code,
something like:

result = None
if cond_x == 'x':
    result = ....
print(result)
I feel there could be a better way to handle this. Of course, I am thinking something different
from the global tag, because it is just need in the current variable space.

Can you share your thoughts on this?

Best regars,

Gustavo A. Garcia
Gibgo


RE: Variable definitions inside loop / could be better? - Yoriz - Jan-09-2024

The example code does not have a loop so it does not show the problem you are having doubts about.


RE: Variable definitions inside loop / could be better? - deanhystad - Jan-09-2024

global is not applicable here.

I think your pattern is fine. Sometimes I do this when I need to initialize a variable to one of two values based on a condition.
a = b if condition else c
If you want to know how to make sure a variable is assigned when you assign in a loop, provide an example that uses a loop.