0
No out in python
Hi im new bee in python when generate a code then the out put says âno outputâ meanâs program is not functionable? https://sololearn.com/discuss/2209171/?ref=app
4 Answers
+ 3
john ri sumalpong The message, "no output", could indicate that the code has no print statement. If there is a print statement, then the message could indicate that the logic caused execution to bypass the statement. If the logic is good, then maybe the program is taking too long to run and Sololearn ends the execution due to time limit exceeded.
It is hard to tell without seeing your code. The link that you posted goes to another member's Q&A post. Please add a link to your code.
+ 6
john ri sumalpong ,
> to see what your issue is, please show your code here. put the code in playground and save it there. create a link to your code and post it here.
> please do not attach any code that has no relation to your post.
+ 1
Thank you for all of your response now i understand why đđ
0
john ri sumalpong ,
The message "No output." tells you that the program does not output anything, OR the output contains only (white)spaces. But there are some situations where the solution/logic of your code takes too long to finish, it will also output "No output.' and end the program, due to time limit exceeded(However, you can make the code run as long as you want in your IDE).