Firmware
Adafruit CircuitPython 6.2.0 on 2021-04-05; Adafruit Feather STM32F405 Express with STM32F405RG
Code/REPL
arr = [1, 2, 3]
print(arr) # [1, 2, 3]
print(arr[1:]) # [2, 3]
print(f"asdf{arr}") # asdf[1, 2, 3]
print(f"asdf{arr[1:]}") # should be asdf[2, 3]
Behavior
Traceback (most recent call last):
File "<stdin>", line 1
SyntaxError: invalid syntax
Firmware
Code/REPL
Behavior