Posts by Jorge David Jr • 63 points
2 posts
-
2
votes1
answer232
viewsQ: Error: Collections.defaultdict' Object has in Python iteritems attribute
When executing the code below the compiler returns the following message: collections.defaultdict' object has no attribute 'iteritems' I’m using version 3.6.5 of Python. Follows the code: import…
-
4
votes1
answer715
viewsQ: How to pass parameters for IN clauses in Jasperreports?
I have a question in the passage of a parameter in Ireport. I need to pass a list as a parameter. Example: In SQL code the query looks like this: SELECT * FROM TABELA WHERE COD IN (1,2,3,4) In…