“String Usuń 3 ostatnie postacie Python” Kod odpowiedzi

Python Usuń ostatni znak z sznurka

str =  "string"
str = str[:-1]  # Returns "strin"
Batman

String Usuń 3 ostatnie postacie Python

st =  "abcdefghij"
st = st[:-1]  // Returns string with last character removed
DeuxAlpha

Python Usuń ostatnie 4 znaki z ciągu

foo = foo[:-n]
Zany Zebra

Odpowiedzi podobne do “String Usuń 3 ostatnie postacie Python”

Pytania podobne do “String Usuń 3 ostatnie postacie Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu