0
What is REPL?
4 Answers
+ 4
REPL is a Read Eval Print Loop: https://en.m.wikipedia.org/wiki/Readâevalâprint_loop
+ 2
while True:
print(">>>",end='')
x=read()
print(eval(x))
+ 2
It's a "real eval print loop" also, in meaning that's it's a always true condition loop ^^
0
what do u mean by the above snippet? @Roman GrÀf