Which of the following can have 16 as the output in python
Answers
Answered by
4
Answer:
The simplest way to produce output is using the print() function where you can pass zero or more expressions separated by commas. This function converts the expressions you pass into a string before writing to the screen. Returns: It returns output to the screen.
Answered by
0
Answer:
4**2
Explanation:
because double ** means square and square of 4**2 is 16.
Similar questions