Skip to content

Instantly share code, notes, and snippets.

@ashitaka1963
Last active April 16, 2020 23:00
Show Gist options
  • Save ashitaka1963/4c3f019ebf8edfa18ca15e0833527533 to your computer and use it in GitHub Desktop.
Save ashitaka1963/4c3f019ebf8edfa18ca15e0833527533 to your computer and use it in GitHub Desktop.
文字列の反転
# 文字列
s='abc'
print(s[::-1]) # cba
# リスト
s=['a','b','c']
print(s[::-1]) # ['c', 'b', 'a']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment