Introduction
In this project, you will learn how to calculate the square root or cube root of an input number, depending on whether the number is odd or even. This project will help you understand the basic concepts of mathematical operations and data processing in Python.
ð Preview
Enter a number: 2
>>> 1.26
Enter a number: 36
>>> 3.30
Enter a number: 9
>>> 3.00
ðŊ Tasks
In this project, you will learn:
- How to create a Python script that takes user input
- How to determine whether a number is odd or even
- How to calculate the square root and cube root of a number using the
math
module - How to round the calculated result to two decimal places
ð Achievements
After completing this project, you will be able to:
- Write a Python script that can calculate the square root or cube root of an input number
- Understand the basic logic of conditional statements and mathematical operations in Python
- Apply your knowledge of Python to solve a practical problem