Between 2 jupyter notebook, you can use the %store command.
In the first jupyter notebook:
data="string or data-table to pass"
%store data
del data # This will DELETE the data from the memory of the first notebook
In the second jupyter notebook:
%store -r data
data
You can find more information at here.