Go Program to Check Character is a Lowercase

Write a Go Program to check whether the character is lowercase or not. The unicode IsLower finds the Rune is a Lowercase character. We used this IsLower function in the If else statement (if unicode.IsLower(lwch)) to find the given character is lowercase or not. package main import ( “bufio” “fmt” “os” “unicode” ) func main() … Read more