Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet
import jovian
jovian.commit(project='first-steps-with-python')
[jovian] Updating notebook "ahmed-hanzla1998/loops" on https://jovian.ai [jovian] Committed successfully! https://jovian.ai/ahmed-hanzla1998/loops
a_number = 34
if a_number % 2 == 0:
    print("We are inside of an if block")
    print("The given number {} is even.".format(a_number))
We are inside of an if block The given number 34 is even.