How to use a variabel in a string python code example

Example 1: how to use variables in string in python

#Use f-string
#Example:

x = 2
y = f'This is a string using variable x: {x}'
print(y)

#Output: 
#This is a string using variable x: 2

Example 2: how to make a string with many variables in python

var1 = “awesome”
var2 = “ever”
print “Codecademy has the most %s coding lessons %s!% (var1, var2)
# displays:Codecademy has the most awesome coding lessons ever!

Example 3: concardinate str and a variable in python

print("the number is five " + str(5))

Example 4: insert value in string python

>>> shepherd = "Martha"
>>> age = 34
>>> # Note f before first quote of string
>>> stuff_in_string = f"Shepherd {shepherd} is {age} years old."
>>> print(stuff_in_string)
Shepherd Martha is 34 years old.

Example 5: insert into string python

>>> line = 'Kong Panda'
>>> index = line.find('Panda')
>>> output_line = line[:index] + 'Fu ' + line[index:]
>>> output_line
'Kong Fu Panda'

Tags:

Java Example