Skip to content

Instantly share code, notes, and snippets.

View ofelix03's full-sized avatar

Felix Otoo ofelix03

View GitHub Profile
@ofelix03
ofelix03 / concatenating-two-f-strings.py
Created March 2, 2021 13:42
Concatenating two f-strings
# 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
@ofelix03
ofelix03 / concatenating-f-string-and-regular-string.py
Created March 2, 2021 13:43
Concatenating an f-string with a regular string literal
# Concatenates an f-string with a regular string literal
print(f"This is {first_name} {last_name}. " "He is from Ghana")
@ofelix03
ofelix03 / evaluating-rectangle-area-in-old-formatting-mehtods
Last active March 2, 2021 13:49
Evaluating the rectangle area using Str.format() and %-formatting
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
@ofelix03
ofelix03 / evaluating-rectangle-area-with-fstrings.py
Created March 2, 2021 13:48
Evaluating the area of the rectangle using f-strings
rec_width = 5
rec_length = 10
print(f"The area of a rectangle with {rec_length} and {rec_width} is {rec_width * rec_length}"
@ofelix03
ofelix03 / string-interpolation-methods.py
Created March 2, 2021 13:50
Comparing execution speed of interpolation methods
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}"
@ofelix03
ofelix03 / calling-lambda-in-fstrings
Created March 2, 2021 13:51
Calling lambda in f-string
# Do this
f'{(lambda x: x* 2)(3)}'
@ofelix03
ofelix03 / font-medium-class-style.css
Created April 10, 2021 20:40
font-medium-class-style
.font-medium {
font-weight: 500;
}
@ofelix03
ofelix03 / d-flex-class-style.css
Created April 10, 2021 20:42
d-flex-class-style.css
.d-flex {
display: flex;
}
@ofelix03
ofelix03 / text-center-class-style.css
Created April 10, 2021 20:48
text-center-class-style
.text-center {
text-align: center;
}
@ofelix03
ofelix03 / bem-semantic-html.html
Last active April 10, 2021 21:24
bem-semantic-html
<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;
}