The test ouput is not working. It is Python Basics and smart parking lot | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

The test ouput is not working. It is Python Basics and smart parking lot

spaces = int(input( )) # Display message if spaces are available if spaces>0: print("Available spaces") # Display a different message if spaces are not available else: print("Sorry, the parking lot is full") The test output is not working. Conditional Statements.

8th May 2024, 2:01 AM
Div Anand
Div Anand - avatar
13 Answers
+ 1
It would greatly help us if you linked the lesson.
8th May 2024, 3:22 AM
Wilbur Jaywright
Wilbur Jaywright - avatar
+ 1
It is under Introduction to Python / Python Developer Chapter: Control Flow Practice: Smart Parking Lot Your code looks fine to me. Do you use a web browser? The recent update on the web is broken for me. Try the app and see if your code works.
8th May 2024, 5:12 AM
Wong Hei Ming
Wong Hei Ming - avatar
+ 1
Can you please link the code that you currently have, so we can view the full code and better support you. Thank you.
8th May 2024, 8:08 AM
Danish Zubair
Danish Zubair - avatar
+ 1
Various people have been reporting that sometimes code checking gets stuck halfway through. It isn’t your fault, and likely isn’t your system’s fault.
8th May 2024, 1:21 PM
Wilbur Jaywright
Wilbur Jaywright - avatar
0
Div Anand Since you are currently taking the "Introduction to Python" course, it is obvious that you mean the "Smart Parking Lot" practice from the "Control Flow" chapter. Your code is error-free and delivers the expected result. I have tested it with the Sololearn Android app, the Sololearn iPhone app and with the Sololearn web app with Firefox and Microsoft Edge. All versions accept your code. So, what error message are you getting and which Sololearn app are you using?
8th May 2024, 7:24 AM
Niels F 🇩🇪 <html challenger>
Niels F 🇩🇪 <html challenger> - avatar
0
Niels F 🇩🇪 <html challenger> If using a browser and re-run the test, everything is fine (I guess it is your case.) If the test is unsolved, it will show "Checking the code... 1/2" and stop there. For now, only the app works...
8th May 2024, 7:54 AM
Wong Hei Ming
Wong Hei Ming - avatar
0
Wong Hei Ming So you think, that all unsolved practices are not accepted in the web version?
8th May 2024, 7:58 AM
Niels F 🇩🇪 <html challenger>
Niels F 🇩🇪 <html challenger> - avatar
0
Niels F 🇩🇪 <html challenger> I didn't think, but tested. I'm doing C++ and facing the exact problem, and filed a bug report.
8th May 2024, 8:00 AM
Wong Hei Ming
Wong Hei Ming - avatar
0
Wong Hei Ming I just tested it with an unsolved practice in the 'Introduction to Python' course using the SoloLearn web version with Firefox on Windows 10, and my code was accepted by SoloLearn and I received the 5 XP for it. What operating system and browser are you using?
8th May 2024, 8:36 AM
Niels F 🇩🇪 <html challenger>
Niels F 🇩🇪 <html challenger> - avatar
0
spaces = int(input( )) # Display message if spaces are available if spaces >= 1: print("Available spaces") # Display a different message if spaces are not available else: print("Sorry, the parking lot is full") I changed If spaces>0: To If spaces>=1:
8th May 2024, 8:51 AM
🇸🇾 Abdulaziz Alnaser 🇸🇩
🇸🇾 Abdulaziz Alnaser 🇸🇩 - avatar
0
Niels F 🇩🇪 <html challenger> I'm on Windows 11 23H2 (build 22631.3447) with Firefox 125.0.3
8th May 2024, 9:00 AM
Wong Hei Ming
Wong Hei Ming - avatar
0
🇸🇾 Abdulaziz Alnaser 🇸🇩 His published code works and is accepted by SoloLearn as a correct solution. Therefore, there is no reason to change it. Moreover, the conditions spaces > 0 and spaces >= 1 yield exactly the same result in this context.
8th May 2024, 9:18 AM
Niels F 🇩🇪 <html challenger>
Niels F 🇩🇪 <html challenger> - avatar
0
It should work.. the code is good.
8th May 2024, 9:33 AM
Jacob Morgunov
Jacob Morgunov - avatar