If n greater than 10 then increment 5 else increment by1in python Get link Facebook X Pinterest Email Other Apps March 28, 2022 If n greater than 10 then increment 5 else increment by1in python n=int(input()) if(n>10): n+=5 else: n+=1 print(n) Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment