Quick actions

cmd+k|ctrl+k

Navigation

Languages

STRING INDEX

Snippet info

Language

Python

Visibility

public

Author

aeoncodexglot

Created

2025-02-03T18:20:31.820981Z

Updated

2025-02-06T11:19:49.902436Z

python = 'I am PYHTON'

print(python[1:4])
print(python[1:])
print(python[:])
print(python[1:100])
print(python[-1])
print(python[-4])
print(python[:-3])
print(python[-3:])
print(python[::-1])

INFO