34 lines
976 B
Plaintext
34 lines
976 B
Plaintext
Info in /tmp/script.py from L1:8 to L1:9:
|
|
fib = [[36m1[0m,1,2]
|
|
[36m~> Type: int[0m
|
|
|
|
Info in /tmp/script.py from L1:10 to L1:11:
|
|
fib = [1,[36m1[0m,2]
|
|
[36m~> Type: int[0m
|
|
|
|
Info in /tmp/script.py from L1:12 to L1:13:
|
|
fib = [1,1,[36m2[0m]
|
|
[36m~> Type: int[0m
|
|
|
|
Info in /tmp/script.py from L1:7 to L1:14:
|
|
fib = [36m[1,1,2][0m
|
|
[36m~~~~~~~> Type: list[int][0m
|
|
|
|
Info in /tmp/script.py from L2:12 to L2:15:
|
|
fib.append([36m3.0[0m)
|
|
[36m~~~> Type: float[0m
|
|
|
|
Info in /tmp/script.py from L2:1 to L2:4:
|
|
[36mfib[0m.append(3.0)
|
|
[36m~~~> Type: list[int][0m
|
|
|
|
Info in /tmp/script.py from L2:1 to L2:16:
|
|
[36mfib.append(3.0)[0m
|
|
[36m~~~~~~~~~~~~~~~> Type: <Unknown>[0m
|
|
|
|
Error in /tmp/script.py from L2:12 to L2:15:
|
|
fib.append([31m3.0[0m)
|
|
[31m~~~> Wrong type for argument 'object', expected int, got float[0m
|
|
|
|
[31mErrors[0m: 1 [36mInfos[0m: 7
|