0
fstring, can anyone help in debugging, the output is not apt
name = print(input("enter then name:")) statement = f"{name}is great" print(statement) output should be "name is great" but a "none is added in between in the output
2 ответов
+ 10
You need to remove the print statement in the first line
name = input("enter then name:")
+ 6
Debashish Das ,
if you like, the output can be slightly optimized:
- we can use f-string directly inside the print() function
- we should have a space between the name and the word *is*
print(f"{name} is great")