Skip to main content

Posts

Showing posts with the label python quiz

Text to handwriting

  Text To Handwritten using Python      Step 1 - pip install to pywhatkit  Step 2 - open IDEL python 3        Step 3 -Type a  p rogram 👇👇       1 2 import pywhatkit as hw hw . text_ to_handwriting( "Subscribe to Learn Python Tamil " ,rgb = ( 0 , 0 , 255 )) Output:

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)                               ...