The following variable was created: course_name = 'python interview' in a global scope. How can you remove this variable? (Select three optins)
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