Square:
Side length
Print the area, perimeter and volume of a square
Rectangle:
Width; length; height
Print the area, perimeter and volume of a rectangle
Circle :
radius
Print the area, perimeter and volume of a circle
triangle:
Base height
Print the area, of a triangle
Code the formula for:
Speed
Distance
Time
Type of Triangle
Is acute, obtuse , right?
Is isos, scalene, equalat?
Pythagoras
Take in the x value y value print the hypotenuse
Take in the hypotenuse and another value print the remaining value
BMI
Take in the
Mass Height
Print out which bmi class the user is in
Farmer Brown
Leg_number = chickens*2 + cows*4 + bees*6
A farmer has chickens with 2 legs, cows with 4 legs, and bees with 6 legs on his farm. Write a program that, given the number of chickens, cows and bees, will output the total number of legs
Determinant
Given as input 4 space-separated integers a b c d, write a program to output the value ad – bc. The value of each integer is between - 10000 and 10000
Compound interest
Take in the principle amount interest as % and duration of the investment in years return the accumulated amount
Simple interest
Take in the principle amount interest as % and duration of the investment in years return the accumulated amount
you will load the training and test sentiment datasets "twitdata_TEST.tsv" and "allTrainingData.tsv". The data should be loaded into 4 lists of strings: X_txt_train, X_txt_test, y_test, y_train.