Answers for "str.format python 3"

22

python string format

string_a = "Hello"
string_b = "Cena"

# Index based:
print("{0}, John {1}"
      .format(string_a, string_b))
# Object based:
print("{greeting}, John {last_name}"
      .format(greeting=string_a, last_name=string_b))
Posted by: Guest on February-11-2020
1

str.format python 3

print("Sammy the {pr} {1} a {0}.".format("shark", "made", pr = "pull request"))
Posted by: Guest on April-30-2020
10

python string format

print("My name is {0} and I am {1} years old".format(name, age))
Posted by: Guest on May-27-2020
1

.format python 3

#New Style
'{} {}'.format('one', 'two')

#Old Style
'%s %s' % ('one', 'two')
Posted by: Guest on March-20-2021
0

str.format python 3

print("Sammy ate {0:f} percent of a {1}!".format(75, "pizza"))
Posted by: Guest on April-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language