I need some assitance since I really have no idea how I can fix this:
x="test"
y="test2"
When I try to import y from x , it says that there is no file with the name "x" (from x import y)
Is there any way to import test2 from test
where test2 is a variable inside the filename test
(The code I'm currently using)
start="trans"
x= ["a","b","c","d","e","f","g","h","i","j"]
while len(x) !=1:
global begin
del x[0]
print(x[0])
list_to_string= ''.join(x)
start="start"+list_to_string[0]
print(start)
else:
print("stop")
from start import start
Thanks already :)