“Comment obtenir un caractère spécifique dans une chaîne sur le numéro Python” Réponses codées

analyser les premiers caractères de String Python

# Get First 3 character of a string in python
first_chars = sample_str[0:3] 
print('First 3 characters: ', first_chars)

# Output:
First 3 characters: Hel
Magnificent Moose

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

Comment obtenir un caractère spécifique dans une chaîne sur le numéro Python

# An example text
text = "This is text"
# print the [0] first character of the sample text, 
#			[4] fifth character,
#			[0: 4] first to fifth character,
#			[-1] last character.
print(tekst[0], tekst[4], tekst[0:4], tekst[-1])
Edraa

Réponses similaires à “Comment obtenir un caractère spécifique dans une chaîne sur le numéro Python”

Questions similaires à “Comment obtenir un caractère spécifique dans une chaîne sur le numéro Python”

Plus de réponses similaires à “Comment obtenir un caractère spécifique dans une chaîne sur le numéro Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code