diff --git a/Python3/ex39.py b/Python3/ex39.py index 88c851a..815ac23 100755 --- a/Python3/ex39.py +++ b/Python3/ex39.py @@ -57,4 +57,4 @@ # get a city with a default value city = cities.get("TX", 'Does Not Exist') -print("The city for the state 'TX' is %s" % city) \ No newline at end of file +print(f"The city for the state 'TX' is {city}")