how to print the statement and result stored in variable in same line code example
Example 1: python print variable and string
foo = "seven"
print("She lives with " + foo + " small men")
Example 2: python inline print variable
print(f'I have {a} {b}')