The following variable was created: course_name = 'python interview' in a global scope. How can you remove this variable? (Select three optins)

Questions & AnswersCategory: PythonThe following variable was created: course_name = 'python interview' in a global scope. How can you remove this variable? (Select three optins)
Geek Boy Staff asked 2 years ago

The following variable was created:

course_name = 'python interview'

in a global scope. How can you remove this variable? (Select three options)

a. del global()['course_name']

b. del course_name

c. del(course_name)

d. rm course_name

e. remove course_name