use :str/int for giving ifo for the varible :)
name:str = "pro" age:int = 9
use f""/f'' to put varibles in your string whith no problème :)
name:str = "pro" age:int = 9 print(f"hi {name}, you are {age} years old")