मराठी

Observe the following program carefully, and identify the error: from math import sqrt,ceil def calc(): print cos(0) calc() #function call - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Observe the following program carefully, and identify the error:

from math import sqrt,ceil
def calc():
      print cos(0)
calc()                #function call
टीपा लिहा

उत्तर

There are two errors in the given program.

  1. Only square root (sqrt) and ceiling (ceil) functions have been imported from the Math module, but here cosine function (cos) is used. ‘from math import cos’ should be written in the first line for the 'cos' function to work properly.
  2. The syntax of the ‘print’ function is incorrect. The correct syntax will be ‘print(cos(0))’.
shaalaa.com
Module
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 7: Functions - Exercise [पृष्ठ १७०]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
पाठ 7 Functions
Exercise | Q 1. b) | पृष्ठ १७०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×