You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
17 lines
160 B
Python
17 lines
160 B
Python
x = x[:]
|
|
x = x[::]
|
|
x = x[::c]
|
|
x = x[:b]
|
|
x = x[:b:]
|
|
x = x[:b:c]
|
|
x = x[a]
|
|
x = x[a:]
|
|
x = x[a::]
|
|
x = x[a::c]
|
|
x = x[a:b]
|
|
x = x[a:b:]
|
|
x = x[a:b:c]
|
|
|
|
x[0] = 1
|
|
x[x] = x
|