“pour char dans String Python” Réponses codées

Comment obtenir une lettre d'une chaîne Python

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 à

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

Python pour le caractère en chaîne

# Python program to iterate over characters of a string
  
# Code #1
string_name = "geeksforgeeks"
  
# Iterate over the string
for element in string_name:
    print(element, end=' ')
print("\n")
  
  
# Code #2
string_name = "GEEKS"
  
# Iterate over index
for element in range(0, len(string_name)):
    print(string_name[element])
Supreme Oreo

pour char dans String Python

string = "some string"

for x in string:
  	print(x, end=' ')
Helpless Hedgehog

Réponses similaires à “pour char dans String Python”

Questions similaires à “pour char dans String Python”

Plus de réponses similaires à “pour char dans String Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code