Computer Science, asked by manishr9389, 10 months ago

write a python program to display the thought of the day

Answers

Answered by codiepienagoya
2

python program to display the thought of the day

Output:

Thought of the day

Explanation:

Python program to display thought of the day can be given as follows:

Program:

print ('Thought of the day')

Description of the above python code:  

  • In python print function is a built-in function.  
  • Print function is used for both values and messages or statements.  
  • The updated version of the python language uses parentheses but in the old version, it was not used parentheses.
  • To print this function value we do not use a semicolon.
  • This function is used for print return function values.

Learn more:

  • Use of print function: https://brainly.in/question/11417716

Similar questions