A swimming pool is 3 feet deep. Store this depth in the variable – depth and
print it in python
Answers
Answered by
0
Answer:
swimpool = 3
print(swimpool)
Answered by
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