Computer Science, asked by AryanKapoorLucknow, 5 months ago

Write a program to accept a character and check whether it is in lowercase or not.

Answers

Answered by yesiamin6
0

Answer:

ch =input("ent a character\n");

if(ch.islower()):

print("char is of lowercase")

Explanation:

This is the program written in Python

Here is used a built in module of python islower which returns true if the char is in lowercase

Output is attached look at that

HOPE IT HELPS YOU

DO FOLLOW FOR MORE PROGRAMS

MARK AS BRAINLIEST

Attachments:
Similar questions