Report this

What is the reason for this report?

How do i solve this in Python?

Posted on January 28, 2021

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.

Hi there,

This could be done with the following:

# Define the variable here
num = 33

# Then we check if the number is in this range
if (num >= 40 and num <= 49):
  status = 'true'
else:
  status = 'false'

# finally we print out the status
print(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.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.