Data-Science-Regular-Bootcamp
Data-Science-Regular-Bootcamp copied to clipboard
f Strings
name = "Datacamp"
displaying single quotations
print(f"Hello, '{name}'")
print()
displaying double quotations
print(f"Hello, "{name}"")