Write an if-else statement that assigns True to the again variable if the score vari-able is within the range of 40 to 49. If the score variable’s value is outside this range, assign False to the again variable
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
# Define the variable here
num =33# Then we check if the number is in this rangeif(num >=40and num <=49):
status ='true'else:
status ='false'# finally we print out the statusprint(status)
Hope that this helps!
Regards,
Bobby
The developer cloud
Scale up as you grow — whether you're running one virtual machine or ten thousand.
From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.