Get URL
Micropip
Memory Graph
Web Debugger
GitHub
PyPI
Invocation
Tree
Config
Fit
+
−
100%
Continue
Step Over
Step Into
Step Out
Stop
Play
secs
import copy def custom_copy(a): c = a.copy() c[1] = a[1].copy() return c a = [ [1, 2], [3, 4] ] c1 = a c2 = copy.copy(a) c3 = custom_copy(a) c4 = copy.deepcopy(a) a[1].append(9999) print(f'{c1=}\n{c2=}\n{c3=}\n{c4=}')
URL Copied to Clipboard
The following URL has been copied to your clipboard with:
Installed micropip packages
The current code
Set breakpoints
Playback timestep
Current Play/Pause state
Continues at start: