...

/

Teleportation

Teleportation

We'll cover the following...

After quantum teleportation, let’s present Python teleportation.

Press + to interact
import numpy as np
def energy_send(x):
# Initializing a numpy array
np.array([float(x)])
def energy_receive():
# Return an empty numpy array
return np.empty((), dtype=np.float).tolist()
energy_send(123.456)
print(energy_receive())

Exp ...

...