python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k 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
Using R to convert GTFS spatial data from character to numeric
I am following a vignette for gtfstools (https://cran.r-project.org/web/packages/gtfstools/vignettes/gtfstools.html) but am getting stuck with the data format. Basically, I am linking to a gtfs datase...
TransitHarmony
Votes: 0
Answers: 1