Computer Science, asked by TanviGarg24, 8 months ago

A swimming pool is 3 feet deep. Store this depth in the variable – depth and
print it in python​

Answers

Answered by Manndalsania2502
0

Answer:

swimpool = 3

print(swimpool)

Answered by peter12tyo
2

Answer:

If as a string:

depth = "3 feet"

print (depth)

If as a number (integer or float)

depth = 3

print (depth, "feet")

Explanation:

Similar questions