python:bases:chaines

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
python:bases:chaines [2022/09/25 10:05] philpython:bases:chaines [2024/08/18 08:59] (Version actuelle) – [Pour aller plus loin] phil
Ligne 5: Ligne 5:
 ===== Python - Chaînes de caractères ===== ===== Python - Chaînes de caractères =====
  
-[Mise à jour le : 25/9/2022]+[Mise à jour le : 18/8/2024]
  
   * **Sources**    * **Sources** 
     * **Documentation** sur Python.org : <html><a href="https://docs.python.org/fr/3.6/reference/index.html" target="_blank">référence du langage</a>, <a href="https://docs.python.org/fr/3.7/library/string.html#" target="_blank">opérations usuelles sur les chaînes</a>, <a href="https://docs.python.org/fr/3.5/library/functions.html" target="_blank">fonctions natives</a></html> (built-in)     * **Documentation** sur Python.org : <html><a href="https://docs.python.org/fr/3.6/reference/index.html" target="_blank">référence du langage</a>, <a href="https://docs.python.org/fr/3.7/library/string.html#" target="_blank">opérations usuelles sur les chaînes</a>, <a href="https://docs.python.org/fr/3.5/library/functions.html" target="_blank">fonctions natives</a></html> (built-in)
  
-  * **Lectures connexes** 
-    * **Real Python** 
-      * <html><a href="https://realpython.com/python-data-types/" target="_blank">Basic Data Types in Python</a></html> 
-      * <html><a href="https://realpython.com/python-strings/" target="_blank">Strings and Character Data in Python</a></html> 
-      * <html><a href="https://realpython.com/python-string-formatting/" target="_blank">Python String Formatting Best Practices</a></html> 
-      * <html><a href="https://realpython.com/convert-python-string-to-int/" target="_blank">How to Convert a Python String to int</a></html> 
-      * <html><a href="https://realpython.com/python-sort/" target="_blank">How to Use sorted() and sort() in Python</a></html> 
-  
   * ** Mots-clés** : collection, séquence, indexation, insertion, concaténation, formatage, accès, parcours, sélection.   * ** Mots-clés** : collection, séquence, indexation, insertion, concaténation, formatage, accès, parcours, sélection.
  
Ligne 35: Ligne 27:
  
 ==== 1. Introduction ==== ==== 1. Introduction ====
-En programmation, le texte s'appelle chaîne de caractères. Pour créer une chaîne de caractères, il faut encadrer le texte de guillemets **" "** ou d'apostrophes **' '**. Une chaîne de caractères est une **__séquence__**, ce qui signifie que c'est une **collection ordonnée** de valeurs. Le premier élément de la chaîne est **indexé** par **0**. Les chaînes de caractères sont des instances de la classe **str**.+En programmation, le texte s'appelle chaîne de caractères. Une chaîne de caractères est une **__séquence__**, ce qui signifie que c'est une **collection ordonnée** de valeurs. Le premier élément de la chaîne est **indexé** par **0**. Les chaînes de caractères sont des instances de la classe **str**.
  
 <callout type="warning" icon="true">En Python une chaîne de caractères est **immuable** (ou **non mutable**) c'est-à-dire q'elle ne peut être modifiée après sa création. \\ Toutes les **méthodes** de manipulation des chaînes **renvoient** une **chaîne de caractères**. \\ \\ Il faut encadrer le texte de **guillemets** simples **' '** ou doubles **" "**.</callout> <callout type="warning" icon="true">En Python une chaîne de caractères est **immuable** (ou **non mutable**) c'est-à-dire q'elle ne peut être modifiée après sa création. \\ Toutes les **méthodes** de manipulation des chaînes **renvoient** une **chaîne de caractères**. \\ \\ Il faut encadrer le texte de **guillemets** simples **' '** ou doubles **" "**.</callout>
Ligne 42: Ligne 34:
 {{ :python:bases:pointeur.png?nolink|}} {{ :python:bases:pointeur.png?nolink|}}
 <code python *.py> <code python *.py>
-deux variables pointent vers le même objet chaîne de caractères+Deux variables pointent vers le même objet chaîne de caractères
 s1 = 'abc' s1 = 'abc'
 s2 = s1 s2 = s1
Ligne 49: Ligne 41:
 {{ :python:bases:pointeur2.png?nolink|}} {{ :python:bases:pointeur2.png?nolink|}}
 <code python *.py> <code python *.py>
-# on essaie de modifier l'objet +Si on essaie de modifier l'objet (+ : concaténation) 
-s1 += 'def' # une deuxième chaîne est créée pour s1,  +s1 = s1 + 'def'alors une deuxième chaîne est créée pour s1,  
-            # s2 continue à pointer vers s1 initial+                et s2 continue à pointer vers s1 initial
 </code> </code>
  
Ligne 71: Ligne 63:
 </code> </code>
  
-<callout type="tip" icon="true">Par défaut l'instruction **print** provoque un retour à la ligne après l'affichage. On peut changer ce comportement en fournissant une autre chaîne de caractère à accoler à l'affichage comme ci-dessus ou même rien.</callout>+<callout type="tip" icon="true">Par défaut l'instruction **print** provoque un retour à la ligne après l'affichage. On peut changer ce comportement en fournissant une autre chaîne de caractère à accoler à l'affichage comme ci-dessous ou même rien.</callout>
  
 // Exemple // // Exemple //
Ligne 86: Ligne 78:
 //Exemple// //Exemple//
 <code python *.py> <code python *.py>
 +monscore = 1000
 f"Vous avez obtenu {monscore} points" # Résultat : Vous avez obtenu 1000 points f"Vous avez obtenu {monscore} points" # Résultat : Vous avez obtenu 1000 points
 </code> </code>
Ligne 105: Ligne 98:
 <code python *.py> <code python *.py>
 texte2 = " World" texte2 = " World"
-texte3 = texte2*3 # Résultat texte3 = " World World World+texte3 = texte2*3 # Résultat texte3 = " World World World"
 </code> </code>
  
Ligne 111: Ligne 104:
 <callout type="primary" icon="true">Pour **insérer des valeurs** dans une chaîne on utilise **%s** à l'emplacement retenu, la méthode **format** ou des **virgules**.</callout> <callout type="primary" icon="true">Pour **insérer des valeurs** dans une chaîne on utilise **%s** à l'emplacement retenu, la méthode **format** ou des **virgules**.</callout>
  
-//Exemple//+//Exemples//
  
 <code python *.py> <code python *.py>
Ligne 136: Ligne 129:
   * **Ressource**   * **Ressource**
     * <html><a href="https://codesolid.com/python-indexing-slicing-exercises/" target="_blank">Python Indexing and Slicing: Complete Tutorial With Hands-On Exercises</a></html>     * <html><a href="https://codesolid.com/python-indexing-slicing-exercises/" target="_blank">Python Indexing and Slicing: Complete Tutorial With Hands-On Exercises</a></html>
- 
-<callout type="primary" icon="true">Une chaîne de caractères est une séquence constituée de chaînes de caractères constituées d'un seul caractère.</callout> 
  
   * **Longueur d'une chaîne**   * **Longueur d'une chaîne**
Ligne 175: Ligne 166:
 La sélection consiste à extraire une partie de la chaîne (//slicing//). Pour sélectionner une partie d'une chaîne, on précise la valeur du premier et du dernier indice entre crochet et éventuellement un pas. La sélection consiste à extraire une partie de la chaîne (//slicing//). Pour sélectionner une partie d'une chaîne, on précise la valeur du premier et du dernier indice entre crochet et éventuellement un pas.
  
-<callout type="primary" icon="true">//Chaine//**[**//début// **:** //fin// **:** //pas//**]**</callout>  +<callout type="primary" icon="true">//Chaine//**[**//début// **:** //fin// **:** //pas//**]**. Par défaut //pas// = 1.</callout>  
 {{ :python:poo:composites:brackets.png?nolink&300 |}} {{ :python:poo:composites:brackets.png?nolink&300 |}}
  
Ligne 282: Ligne 273:
 ==== Pour aller plus loin ==== ==== Pour aller plus loin ====
   * <html><a href="https://realpython.com/python-formatted-output/" target="_blank">A Guide to the Newer Python String Format Techniques</a></html>   * <html><a href="https://realpython.com/python-formatted-output/" target="_blank">A Guide to the Newer Python String Format Techniques</a></html>
 +  * <html><a href="https://bas.codes/posts/python-slicing" target="_blank">A Comprehensive Guide to Slicing in Python</a></html>
 +  * <html><a href="https://realpython.com/python-data-types/" target="_blank">Basic Data Types in Python</a></html>
 +  * <html><a href="https://realpython.com/inherit-python-str/" target="_blank">Custom Python Strings: Inheriting From str vs UserString</a></html>
   * <html><a href="https://realpython.com/convert-python-string-to-int/" target="_blank">How to Convert a Python String to int</a></html>   * <html><a href="https://realpython.com/convert-python-string-to-int/" target="_blank">How to Convert a Python String to int</a></html>
 +  * <html><a href="https://realpython.com/python-sort/" target="_blank">How to Use sorted() and sort() in Python</a></html>
 +  * <html><a href="https://realpython.com/replace-string-python/" target="_blank">How to Replace a String in Python</a></html>
 +  * <html><a href="https://realpython.com/python-string-contains-substring/" target="_blank">How to Check if a Python String Contains a Substring</a></html>
 +  * <html><a href="https://realpython.com/python-string-formatting/" target="_blank">Python String Formatting Best Practices</a></html>
 +  * <html><a href="https://realpython.com/python-string-split-concatenate-join/" target="_blank">Splitting, Concatenating, and Joining Strings in Python</a></html>
   *  <html><a href="https://realpython.com/regex-python/" target="_blank">Regular Expressions: Regexes in Python (Part 1)</a></html> <html><a href="https://realpython.com/regex-python-part-2/" target="_blank">(Part 2)</a></html>   *  <html><a href="https://realpython.com/regex-python/" target="_blank">Regular Expressions: Regexes in Python (Part 1)</a></html> <html><a href="https://realpython.com/regex-python-part-2/" target="_blank">(Part 2)</a></html>
   * Les expressions régulières dans la <html><a href="https://docs.python.org/3/library/re.html#regular-expression-syntax" target="_blank">documentation Python</a></html> - Outil <html><a href="https://pythex.org/" target="_blank">pythex</a></html>   * Les expressions régulières dans la <html><a href="https://docs.python.org/3/library/re.html#regular-expression-syntax" target="_blank">documentation Python</a></html> - Outil <html><a href="https://pythex.org/" target="_blank">pythex</a></html>
-  * <html><a href="https://realpython.com/python-string-split-concatenate-join/" target="_blank">Splitting, Concatenating, and Joining Strings in Python</a></html> +  * <html><a href="https://realpython.com/python-strings/" target="_blank">Strings and Character Data in Python</a></html>
-  * <html><a href="https://bas.codes/posts/python-slicing" target="_blank">A Comprehensive Guide to Slicing in Python</a></html> +
-  * <html><a href="https://realpython.com/replace-string-python/" target="_blank">How to Replace a String in Python</a></html>+
  • python/bases/chaines.1664093138.txt.gz
  • Dernière modification : 2022/09/25 10:05
  • de phil