I want to pass a value in a function from another script using a for loop.
Eg.
Test.py
from testing import *
print(y)
Testing.py
import os
for y in range(1,100):
os.system('Test.py')
I want to pass a value in a function from another script using a for loop.
Eg.
Test.py
from testing import *
print(y)
Testing.py
import os
for y in range(1,100):
os.system('Test.py')