Math, asked by Niloysharma, 7 months ago

what will be the output for the following?
FOR V=1 TO 10
NEXT V
PRINT V ​
please reply me friends quickly

Answers

Answered by Anonymous
3

Answer:

In principle, every computer program has to communicate with the environment or the "outside world". For this purpose nearly every programming language has special I/O functionalities, i.e. input/output. This ensures the interaction or communication with the other components e.g. a database or a user. Input often comes - as we have already seen - from the keyboard and the corresponding Python command, or better, the corresponding Python function for reading from the standard input is input().

We have also seen in previous examples of our tutorial that we can write into the standard output by using print. In this chapter of our tutorial we want to have a detailed look at the function

Similar questions