Computer Science, asked by ataniamichelle05, 9 months ago

5. What'll be the output of the following program?
Name='Kalam
Age=70
print(name," you are”,
age, now but", end="!!!)
print("you will be "age+1,"Next year")​

Answers

Answered by shivakumarjagadish12
1

Answer:

output;

Kalam you are 70 now but !!!

you will be 71 Next year

Explanation:

there is a mistake in ur question

it should be;

print(name, "you are", age, "now but", end='!!!' )

not

print(name," you are”,

age, now but", end="!!!)

hope it helped ya!

Similar questions