Skip to content

Acespace/Convert-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

Convert-

A simple conversion table

There are three parts of this project.

Model(s), Control, and Veiw.

The Model(s) for this project are the files containing functions to preform the conversions.

The Control will manage the importing, calling, and execution of the application.

My goal is to make a UI using Tkinter; however for now, the Veiw will just run from commandline.

DESIGN:

function template:

def feet(num, endU):

if endU == "inches" or "INCH" or "inch":
	
	num1 = num
	num *= 12

	return num 

elif endU == "centimeters" or "CENTIMETERS":
	
	num1 = num
	num /= 0.0328084

	return num 

elif endU == "Meters" or "meters" or "meter":
	num1 = num
	num /= 3.28084

	return num


else:
	pass

About

A simple conversion table

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages