When we use replace() like this, we'll replace all occurrences of the value inside the string, we can see it here by coding print(july).
replace()
print(july)
Make sure to pick print followed by ( and then july, ).
print
(
july
)