skip to content →
ts-quiz
— ~/loading.ts
tsc --watch
● loading…
TS
home.ts
TS
levels.ts
MD
learn.md
TS
playground.ts
NEW
// tsc --watch · type-checking modules…
await
load
(
"loading.ts"
)
// streaming server components
◇ tsc 6.0.3 · compiling…
UTF-8
◇ loading…
ts-quiz
·
py
—
python-medium/18.py
● 0 errors
EN ▾
ide
current
PY
home.py
PY
quiz.py
●
MD
learn.md
PY
playground.py
PY
challenges.py
python-medium
·
18
/25
☆ bookmark
[exit]
import
copy
a
=
[[
1
,
2
], [
3
,
4
]]
b
=
copy.copy(a)
b[
0
].append(
9
)
print
(a)
What does this print?
A
[[1, 2, 9], [3, 4]]
B
[[1, 2], [3, 4]]
C
[[1, 2], [3, 4, 9]]
D
[[1, 2, 9], [3, 4, 9]]
▾ reveal answer
← prev
✓ python 3.12 (pyodide)
UTF-8