Answers for "formatted string in python"

48

formatted string python

# Newer f-string format
name = "Foo"
age = 12
print(f"Hello, My name is {name} and I'm {age} years old.")
# output :
# Hello, my name is Foo and I'm 12 years old.
Posted by: Guest on March-27-2020
1

formatting strings in python

age = 11
my_self = "My name is Vishnu, I am " + str(age)
print(my_self)
Posted by: Guest on October-12-2021
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
0

formatted string in python

>>> name = "world"
>>> print(f"Hello {name}!)"
'Hello world!'
Posted by: Guest on December-18-2020

Code answers related to "formatted string in python"

Python Answers by Framework

Browse Popular Code Answers by Language