Nothing here yet.
Nothing here yet.
No blogs yet.
Hi Poojitha. It should print the integer as a string when using an fstring. For example: name = 'Rishal' #this is a string age = 29 #this is an Int print(f"Hello, My name is {name} and I'm {age} years old.") OUTPUT: Hello, My name is Rishal and I'm 29 years old. Hope this helps