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
Skip particular repetition in nested foor loop - Python
for k in range(8):
for i in range(2): #number of columns
for j in range(4): #number of row
print(k,j,i)
I want an output like this. no repetition of first for loop
k,j,i
-----...
Navaneeth P K
Votes: 0
Answers: 4
Is there a way to setup each iteration of for-loop separately in benchmarks?
I'm trying to run benchmarks with different number of items on the database, for example: testing response time of an endpoint for checking if the name of the item already taken with 1 item on the dat...
Ariet
Votes: 0
Answers: 1
Is there a more efficient way to write this iterative function?
I've been recently dealing with recursive and iterative functions. And I'm trying the following in the example below:
I have this recursive version of Pascal triangle:
def pascal_recursion(n):
&qu...
Mimo
Votes: 0
Answers: 1