So,I have a main.py and a file.py
on file.py I have a function(ex:
def s_break(message):
words = message.split(" ")
, and an array words. )
When I import the words array into main.py using: from "filename" import words I receive the array empty. Why?
Thank you!