Answers for "c="He is {} and he is {}".format(a,b) python"

5

f string repr

# If you want to use repr in f-string use "!r"
# Normal behavior (using str)
>>> color = "blue\ngreen"
>>> day = datetime.date(2020, 6, 4)
>>> f"Color is {color} and day is {day}"
'Color is blue\ngreen and day is 2020-06-04'
# Alternate behavior (using repr)
>>> f"Color is {color!r} and day is {day!r}"
"Color is 'blue\\ngreen' and day is datetime.date(2020, 6, 4)"
Posted by: Guest on June-04-2020
0

format specificer f strings python

#!/usr/bin/env python3

val = 12.3

print(f'{val:.2f}')
print(f'{val:.5f}')
Posted by: Guest on April-29-2020
0

c="He is {} and he is {}".format(a,b) python

c="He is {} and he is {}".format(a,b) #add in bracket
Posted by: Guest on June-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language