x個の未知の文字で構成される文字列があるとしましょう。どうすればcharnrを取得できますか。13またはcharnr。x-14?
回答:
まず、必要な数が最初または最後から文字列の有効なインデックスであることを確認してから、配列の添え字表記を使用できます。len(s)
文字列の長さを取得するために 使用
>>> s = "python"
>>> s[3]
'h'
>>> s[6]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: string index out of range
>>> s[0]
'p'
>>> s[-1]
'n'
>>> s[-6]
'p'
>>> s[-7]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: string index out of range
>>>
s[-5]
するのにs[-6]
、インデックスが範囲外のエラーで文句を言うのでしょうか?Pythonの文字列オブジェクトでの実装にとても興味があります。
In [1]: x = "anmxcjkwnekmjkldm!^%@(*)#_+@78935014712jksdfs"
In [2]: len(x)
Out[2]: 45
ここで、xの正のインデックス範囲は、0〜44(つまり、長さ-1)です。
In [3]: x[0]
Out[3]: 'a'
In [4]: x[45]
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
/home/<ipython console> in <module>()
IndexError: string index out of range
In [5]: x[44]
Out[5]: 's'
負のインデックスの場合、インデックスの範囲は-1から-45です。
In [6]: x[-1]
Out[6]: 's'
In [7]: x[-45]
Out[7]: 'a
負のインデックスの場合、負の[長さ-1]、つまり正のインデックスの最後の有効な値は、リストが逆の順序で読み取られるときに2番目のリスト要素を与えます。
In [8]: x[-44]
Out[8]: 'n'
その他、インデックスの例、
In [9]: x[1]
Out[9]: 'n'
In [10]: x[-9]
Out[10]: '7'
以前の回答ASCII character
は、特定のインデックスでカバーしています。
Unicode character
Python2で特定のインデックスを取得するのは少し面倒です。
と例えば、s = '한국中国にっぽん'
あります<type 'str'>
、
__getitem__
、例えば、s[i]
あなたが望む場所にあなたを導きません。のように吐き出し�
ます。(多くのUnicode文字は1バイトを超えていますが__getitem__
、Python 2では1バイトずつインクリメントされます。)
このPython2の場合、次のようにデコードすることで問題を解決できます。
s = '한국中国にっぽん'
s = s.decode('utf-8')
for i in range(len(s)):
print s[i]
Python.orgには、文字列に関する優れたセクションがあります。「スライス表記」と表示されている場所まで下にスクロールします。
これにより、ポイントがさらに明確になります。
a = int(raw_input('Enter the index'))
str1 = 'Example'
leng = len(str1)
if (a < (len-1)) and (a > (-len)):
print str1[a]
else:
print('Index overflow')
入力3出力m
入力-3出力p