0
what does REPL means in python and what does it repeats???
4 Réponses
0
REPL means Read, Eval, Print, Loop. It is a some kind of language shell, a simple interactive environment that takes user inputs, evaluates them and returns the result to the user.
0
I S , does that means that REPL happen in every order in python and it is the method how it is work ???
0
It's one of common usage scenarios. It's how python can work interacting with an user. You can also write your own read-eval-print loop for your own programs.
0
@I S , can you give me an example for the print loop to be shure that i got it 100% :) ,thanks