Skip to main content

Posts

Showing posts from August, 2021

Learn Python Tamil Py1

  Py 1:                                                                                 உள்ளிடப்பட்டஎண் ஒற்றைப்படை அல்லது இரட்டைப்படைஎண்ணாஎன்பதைக் கண்டறியும் நிரல்   Program that detects whether the entered number is odd or even: நிரல் : a = int (input("Enter any number :")) x="even" if a%2==0 else "odd"         print (a, " is ",x)                               ...