python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why inserting `format` function inside a `dolist` expression does not work in Common Lisp?
I am using SBCL, Eamcs, and Slime. Using the print function, I can do:
CL-USER> (dolist (item '(1 2 3))
(print item))
1
2
3
NIL
In addition, format function works for single elements...

Pedro Delfino
Votes: 0
Answers: 3
Instruct JavaScript's Date to read a date string dd/mm/yyyy instead of mm/dd/yyyy
I would like to parse the date string 01/04/2022 as April 1st and not like January 4th by JavaScript Date().
Is there any way I can force/instruct javascript's Date() to read a date string as dd/mm/yy...

mike87
Votes: 0
Answers: 3
How to align/ format output in python
Hey I am building a class and in one of the methods the instruction is:
A long representation of the reviews for the movie, called longReview. This method
takes no parameters. This method should retur...
Peter
Votes: 0
Answers: 1