# Introduction In this project, you will learn how to calculate the square root of an integer and format the output to a specific width and style. ## ð Preview ```python # Example 1: Input: 10 Output: +++++++++++++++++++++++++3.162 # Example 2: Input: 200 Output: ++++++++++++++++++++++++14.142 ``` ## ðŊ Tasks In this project, you will learn: - How to implement the `format_square_root` function to calculate the square root and format the output - How to accept user input and print the formatted square root ## ð Achievements After completing this project, you will be able to: - Write a program that calculates the square root of an integer and formats the output - Understand how to use the `math.sqrt()` function to calculate the square root - Practice formatting output using f-strings and string manipulation
Click the virtual machine below to start practicing