Say Mr. David wanted to divide the property of him in his three sons in the radio of 4:3:2
respectively you need to write a program to print share of each son such that the total property has to be provided input.
Answers
Answered by
2
Answer:
The main factors that determine the shape of the cell are cytoskeletal proteins, cell membrane in animal cell and cell wall in plant cells.
Answered by
1
Answer: Your required pyhton code is :-
prop = int(input("Enter total property (in ₹) : "))
x = prop/9
s1 = 4*x
s2 = 3*x
s3 = 2*x
print("Share of first son is : ₹ "+str(s1))
print("Share of second son is : ₹ "+str(s2))
print("Share of third son is : ₹ "+str(s3))
Please mark it as Brainliest.
Similar questions