This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This concatenates two f-strings | |
# 1st string f"This is {first_name} {last_name} | |
# 2nd string f"He is a {profession}" | |
print(f"This is {first_name} {last_name}. " f"He is a {profession}") # Result: This is Felix Otoo. He is a Software Engineer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Concatenates an f-string with a regular string literal | |
print(f"This is {first_name} {last_name}. " "He is from Ghana") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rec_width = 5 | |
rec_length = 10 | |
rec_area = rec_width * rec_length | |
# Using Str.format() | |
print("The area of a rectangle with {rec_length} and {rec_width} is {rec_area}".foramt(rec_length=rec_length, rec_width=rec_width, rec_area=rec_area)) | |
# Using %-formatting |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rec_width = 5 | |
rec_length = 10 | |
print(f"The area of a rectangle with {rec_length} and {rec_width} is {rec_width * rec_length}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import timeit | |
def test_f_string(): | |
first_name = "Felix" | |
last_name = "Otoo" | |
middle_name = "Albert" | |
age = 28 | |
profession = "Software Engineer" | |
f"This is {first_name} {middle_name} {last_name}. He is {age} years old. He is a {profession}" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Do this | |
f'{(lambda x: x* 2)(3)}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.font-medium { | |
font-weight: 500; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.d-flex { | |
display: flex; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.text-center { | |
text-align: center; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.article { | |
width: 800px; | |
border: 1px solid #ddd; | |
background-color: rgba(236, 253, 245); | |
padding: 20px; | |
border-radius: 0.75rem; | |
box-shadow: 4px 4px 5px #999; | |
} |