Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python format() Method for Formatting Strings

# Python string format() method

# default(implicit) order
default_order = "{}, {} and {}".format('John','Bill','Sean')
print('
--- Default Order ---')
print(default_order)

# order using positional argument
positional_order = "{1}, {0} and {2}".format('John','Bill','Sean')
print('
--- Positional Order ---')
print(positional_order)

# order using keyword argument
keyword_order = "{s}, {b} and {j}".format(j='John',b='Bill',s='Sean')
print('
--- Keyword Order ---')
print(keyword_order)
Source by zerotomastery.io #
 
PREVIOUS NEXT
Tagged: #Python #Method #Formatting #Strings
ADD COMMENT
Topic
Name
7+5 =