Merge branch 'master' of ssh://86thumbs.net:3022/waldek/python_course_doc

This commit is contained in:
waldek 2021-10-29 09:24:56 +02:00
commit c74462e082
1 changed files with 24 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# Basic placeholders
# Basic placeholders usage
ingredient = "sugar"
quantity = "500g"
@ -8,7 +8,24 @@ ingredient_string = "- {}: {}".format(ingredient, quantity)
print(ingredient_string)
# Named placeholders
# Indexed placeholders usage
#
# Placeholders are identified by index number, 0 being the first parameter passed
name = "John"
age = 30
greetings = "My name is {0}, i'm {1}.".format(name, age)
# Named placeholders usage
#
# Placeholders are identified by name, order doesn't matter
fname = "John"
lname = "Doe"
@ -16,3 +33,8 @@ lname = "Doe"
bond_string = "My name is {lastname}, {firstname} {lastname}".format(firstname=fname, lastname=lname)
print(bond_string)