F-STRINGS

 # x=["python","c++"]

# # print(f"python,{'deep'},c++,{'programmer'}")
# for item in x:
# print(x,end="#")
# f=f"{'hello'}"
a = "This is python"
b= 15
c=f"{'Deep'} {a} {b}"
print(c)
print("Deep",a,b,)

Comments

Popular posts from this blog

Become Healthy Goal - Python Program

Interpretation vs Compilation

Calculator in C++