“Python char at” Kode Jawaban

cara mendapatkan huruf python string apapun

Random = "Whatever"#you can put anything here
words2 = Random.split(" ")
print('number of letters:')#you can delete this line...
print(len(Random))#and this one. these lines just Tell you how many 
#letters there are
while True:#you can get rid of this loop if you want
    ask = int(input("what letter do you want?"))
    print(Random[ask-1])
Tough Termite

Python char at

>>> 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
>>> 
Cirex

Jawaban yang mirip dengan “Python char at”

Pertanyaan yang mirip dengan “Python char at”

Lebih banyak jawaban terkait untuk “Python char at” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya