Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 680 Bytes

File metadata and controls

37 lines (32 loc) · 680 Bytes

CBSE CLASS 12 Computer Science(083) Python Project

string-functions-in-python-using-tkinter

string functions in python using tkinter

String functions in python are

  1. Capitalize
  2. find
  3. isalphanum
  4. isalpha
  5. isdigit
  6. isspace
  7. islower
  8. isupper
  9. lower 10.upper 11.title 12.startswith 13.endwith 14.swapcase 15.partition 16.coubnt 17.strip 18.rstrip 19.lstrip

All the function are applied on the string data and output shown in the result box. Description os each function is given in message bos which comes after button click.

Libraries used:

from tkinter import * from tkinter import messagebox from PIL import Image,ImageTk

tools:

  1. spyder
  2. python(3.8)