0 votes
in Django by

Identify the incorrect session modification.

a) request.session[‘course’] = ‘django’

b) del request.session[‘course’]

c) request.session[‘course’][‘name’] = ‘python’

d) request.session[‘course’] = {}

1 Answer

0 votes
by
a) request.session[‘course’] = ‘django’

Related questions

0 votes
asked Jun 25, 2022 in Django by sharadyadav1986
0 votes
asked Jun 29, 2022 in Django by sharadyadav1986
...