Insérer caractère % dans un texte

Insérer caractère % dans un texte - Python - Programmation

Marsh Posté le 03-08-2008 à 13:04:06    

Hello,
 
Je cherche à afficher un texte qui contienne le caractère %. Comment faire ?

Reply

Marsh Posté le 03-08-2008 à 13:04:06   

Reply

Marsh Posté le 03-08-2008 à 13:09:31    

>>> print "foo % bar"
foo % bar
>>>


 
:??:

Reply

Marsh Posté le 03-08-2008 à 13:09:59    

Voir le tableau de correspondance pour le formatage des chaînes de caractères : http://docs.python.org/dev/library [...] operations
 

Code :
  1. $ python
  2. Python 2.5.2 (r252:60911, Jul 31 2008, 07:39:27)
  3. [GCC 4.3.1] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> "42 %"
  6. '42 %'
  7. >>> "%d %%" % 42
  8. '42 %'
  9. >>>

Reply

Marsh Posté le 03-08-2008 à 13:29:03    

multani a écrit :

Voir le tableau de correspondance pour le formatage des chaînes de caractères : http://docs.python.org/dev/library [...] operations
 

Code :
  1. $ python
  2. Python 2.5.2 (r252:60911, Jul 31 2008, 07:39:27)
  3. [GCC 4.3.1] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> "42 %"
  6. '42 %'
  7. >>> "%d %%" % 42
  8. '42 %'
  9. >>>



Merci pour le lien. Il suffit simplement de faire %%. Je pensais l'avoir essayé de cette façon, mais j'ai dû me planter.

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed