Вы находитесь на странице: 1из 1

"""

Created on Tue Sep 4 20:48:08 2018

@author: yashi

"""

name=input("Enter your name : ")#prompt for enter name

#prompt to enter the number of books purchased

booksPurchased=int(input("Enter the number of books purchased : "))

#condition to check for 0 book

if(booksPurchased==0):

point=0

#if book is not 0, this condition will be checked

elif(booksPurchased<=2):

point=5

#if first 2 conditions are false, this condition will be checked

elif(booksPurchased<=4):

point=10

#if above conditions are false, below condition will be checked

elif(booksPurchased<=6):

point=15

#if above conditions are false, below condition will be checked

elif(booksPurchased<=8):

point=20

#if above conditions are false, below condition will be checked

elif(booksPurchased>=9):

point=20

#printing name and the point

print("Hello ",name," Points earned for the month are ",point)

Вам также может понравиться