write a python program to display the following output using a single print statement. program=20, documentation=23,logic=21,flow chart= 18
Answers
Answered by
0
Answer:
Book of Jupyter
Explanation:
program=20
documentation=23
logic=21
flowchart=18
print("program=",program,"documentation=",documentation,"logic=",logic,"flow chart=",flowchart)
Attachments:
Similar questions