Get started learning Python with DataCamp's free Intro to Python tutorial. Learn Data Science by completing interactive coding challenges and watching videos by expert instructors. Start Now!

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join 11 million other learners and get started learning Python for data science today!

Good news! You can save 25% off your Datacamp annual subscription with the code LEARNPYTHON23ALE25 - Click here to redeem your discount

Formátování řetězců


Python používá formátování řetězců ve stylu C k vytváření nových, formátovaných řetězců. Operátor "%" se používá k formátování množiny proměnných, uzavřených v "n-tici" (seznam s pevnou velikostí), společně s formátovacím řetězcem, který obsahuje normální text spolu s "specifikátory argumentů", speciálními symboly jako "%s" a "%d".

Řekněme, že máte proměnnou s názvem "name" se svým uživatelským jménem a chcete uživateli vypsat pozdrav.

# Toto vytiskne "Hello, John!"
name = "John"
print("Hello, %s!" % name)

Pro použití dvou nebo více specifikátorů argumentů použijte n-tici (závorky):

# Toto vytiskne "John is 23 years old."
name = "John"
age = 23
print("%s is %d years old." % (name, age))

Jakýkoliv objekt, který není řetězec, lze také formátovat pomocí operátoru %s. Řetězec, který vrací metoda "repr" tohoto objektu, je formátován jako řetězec. Například:

# Toto vytiskne: A list: [1, 2, 3]
mylist = [1,2,3]
print("A list: %s" % mylist)

Zde jsou některé základní specifikátory argumentů, které byste měli znát:

%s - Řetězec (nebo jakýkoli objekt s řetězcovou reprezentací, jako jsou čísla)

%d - Celá čísla

%f - Čísla s plovoucí desetinnou čárkou

%.<počet číslic>f - Čísla s plovoucí desetinnou čárkou s pevným počtem číslic napravo od tečky.

%x/%X - Celá čísla v šestnáctkové reprezentaci (malé/velké písmena)

Cvičení

Budete muset napsat formátovací řetězec, který vytiskne data pomocí následující syntaxe: Hello John Doe. Your current balance is $53.44.

data = ("John", "Doe", 53.44) format_string = "Hello" print(format_string % data) data = ("John", "Doe", 53.44) format_string = "Hello %s %s. Your current balance is $%s." print(format_string % data) #test_output_contains("Hello John Doe. Your current balance is $53.44.", no_output_msg= "Make sure you add the `%s` in the correct spaces to the `format_string` to meeet the exercise goals!") test_object('format_string') success_msg('Great work!')

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join over a million other learners and get started learning Python for data science today!

Previous Tutorial Next Tutorial Take the Test
Copyright © learnpython.org. Read our Terms of Use and Privacy Policy