Comment créer une sous-chaîne avec les N premiers caractères d'une autre chaîne de caractères en Python ?
En Python, la syntaxe string[:N] permet d'extraire les N premiers caractères d'une chaîne de caractères :
substring = string[:N]
Voici quelques exemples :
string = "AnsWiki"
# Affiche : Ans
print ( string[:3] )
# Affiche : AnsWi
print ( string[:5] )
# Affiche : AnsWiki
print ( string[:7] )
# Affiche : AnsWi
print ( string[:-2] )
Tester les exemples en ligne sur repl.it.
En Python, la syntaxe string[:N] permet d'extraire les N premiers caractères d'une chaîne de caractères :
substring = string[:N]
Voici quelques exemples :
string = "AnsWiki"
# Affiche : Ans
print ( string[:3] )
# Affiche : AnsWi
print ( string[:5] )
# Affiche : AnsWiki
print ( string[:7] )
# Affiche : AnsWi
print ( string[:-2] )
Tester les exemples en ligne sur repl.it.
En Python, la syntaxe string[:N] permet d'extraire les N premiers caractères d'une chaîne de caractères :
substring = string[:N]
Voici quelques exemples :
string = "AnsWiki"
# Affiche : Ans
print ( string[:3] )
# Affiche : AnsWi
print ( string[:5] )
# Affiche : AnsWiki
print ( string[:7] )
# Affiche : AnsWi
print ( string[:-2] )
Tester les exemples en ligne sur repl.it.
# | ID | Query | URL | Count |
---|