Hi,
Can someone please explain how the
I understand if it would be
TIA
Can someone please explain how the
sample
variable is passed onto the function? I understand if it would be
sample_func(sample)
but sample_func()
with no data? 
TIA
def sample_func(): # or def sample_func(*args): print(sample * sample) for sample in range(1, 5): sample_func()