0% found this document useful (0 votes)
123 views3 pages

Objective and Scope of Project

This project aims to build a basic Python program to convert units, like Fahrenheit to Celsius or meters to decameters, using if/else statements. The objective is to help users easily convert between different units by inputting a value and unit to convert. Some challenges are that users may not know what units other parts of the world use or exactly what a unit represents. The program will be limited to converting between around 7 fundamental units and cannot account for units whose values constantly change, like currencies.

Uploaded by

RESTY
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
123 views3 pages

Objective and Scope of Project

This project aims to build a basic Python program to convert units, like Fahrenheit to Celsius or meters to decameters, using if/else statements. The objective is to help users easily convert between different units by inputting a value and unit to convert. Some challenges are that users may not know what units other parts of the world use or exactly what a unit represents. The program will be limited to converting between around 7 fundamental units and cannot account for units whose values constantly change, like currencies.

Uploaded by

RESTY
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

INTRODUCTION

This project is about building a


python program using coding and
other python exclusive features. This
program aims to build a unit
converter used to convert modern
day units into the desired units which
the user wants. For e.g.- Fahrenheit to
Celsius or metre to decametre. This
can be achieved using the "if clause'
present in python. We can ask the
user to input a value and the unit to
which he wants that value to be
converted into and using simple
multiplication and nested if list. We
can convert units.

OBJECTIVE AND SCOPE


OF PROJECT
This project has the objective to build
a unit converter to help those who are
trying to convert foreign units into
their own understood and known
units to have a sense of knowledge
and measure for things. This is a
simple 20-30-line code project and
contained use of input function and if,
else clause. Anybody with basic
python understanding can build or
understand this project.

PROBLEM DEFINITION
AND ANALYSIS
The problems that users face while
converting data is messy calculations,
unknown units and big calculations,
people may not know a unit’s type, or
which unit is used in which part of the
world. For example- Fahrenheit is used in
America while Celsius is used in India,
also pound is used in UK while kilogram is
used in Asian countries. so, it is necessary
for a user to know what the unit means
in different countries to actually be able
to convert it.
LIMITATIONS
every project has its own limitations. for
example, while converting a unit there are
only 7 fundamental units that are to be dealt
with. since the usage of these units can vary
across parts of the world, therefore one can
always get confused with a unit and not
understand the value of the unit, unless the
unit is converted into their own known unit
for reference. also, while writing the code
for this project, we cannot give the exact
value of a unit since they are constantly
changing. for example, currency value are
always changing and thus code will be
needed to be updated for this type of
changes.

You might also like