What to do to correct the error written below:
Dennis Lee Bieber
wlfraed at ix.netcom.com
Mon Apr 11 11:52:26 EDT 2022
On Mon, 11 Apr 2022 00:14:49 -0700 (PDT), NArshad <narshad.380 at gmail.com>
declaimed the following:
> for i in issuedBooks:
Loop control variable is "i"...
> i=0
Control variable "i" has been overwritten so any use of "i" following
this is suspicious
> for l in books:
Inner-loop control variable is "l" -- and does not seem to be used for
anything following...
> t=(students[i].user,students[i].user_id,books[i].name,books[i].isbn,issuedBooks[0].issued_date,issuedBooks[0].expiry_date,fine)
> i=i+1
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed at ix.netcom.com http://wlfraed.microdiversity.freeddns.org/
More information about the Python-list
mailing list