Print Statement
print("Hello World")
output: Hello World
Program flow
Right flow
print("make the cake")
print("eat the cake")
output: make the cake
eat the cake
Wrong flow
print("eat the cake")
print("make the cake")
output: eat the cake
make the cake
Now create similar exercise and try by yourself
Leave a Reply