180k views
4 votes
Write Python code for the following flowcharts

Write Python code for the following flowcharts-example-1

1 Answer

11 votes

print("Enter a number")

number = input()

if number >= 1000: print("Bigger or equal to 1000")

else: print("Smaller than 1000")

User Voldemar Duletskiy
by
5.3k points