In the following code:
first_part = 46
last_part = 57
guess = f'{first_part}{last_part}'.encode()
print(guess)
print(type(guess))
But I did not understand the code snippet:
guess = f'{first_part}{last_part}'.encode()
I need an explanation or the name of this structure so that I can study.