Write the algorithms and draw the flowcharts for the following: 1. Input the name of the customer and data usage for a month. If the data usage is more than 30 GB then print “Data usage is over limit” else print, “Data usage is under limit”.
Answers
Answered by
0
Answer:
name = input("Please enter your name: ")
data = int(input("Please enter your data usage of this month: "))
if data > 30:
print(f"Dear {name}, your data usage is over limit.")
else:
print(f"Dear {name}, your data usage is under limit.")
Similar questions