+ 1

Write a Python program that takes a string and prints whether it contains more uppercase or lowercase letters.

Write a Python program that takes a string and prints whether it contains more uppercase or lowercase letters.

3rd Apr 2025, 4:28 PM
clet onwumere
clet onwumere - avatar
6 Respuestas
+ 3
How about i tell you a very close logic and you try coding it? Here's my logic: 1. Traverse through each character of string using loop 2. using isupper() and islower() function you can determine whether character is lower or upper 3. Using conditional count upper and lower characters in different variables 4. Then using conditional outside the loop compare which one is more and print the required result You ask further questions on my explanation in same thread but it would be better if you can find syntax by yourself cause it'll help in learning
3rd Apr 2025, 4:38 PM
Snehil Pandey
Snehil Pandey - avatar
+ 2
clet onwumere , > what about if number of lower case is equal to number of upper case ? > what about whitespaces, digits or special cases, they are neither uppercase nor lowercase ?
3rd Apr 2025, 6:54 PM
Lothar
Lothar - avatar
+ 2
clet onwumere Snehil's solution is a good solid one. Alternatively if you are looking to get more practice with regular expressions, you could find all matches for regular expression matching upper case letters, and separate find all matches for lower case letters. Then compare the lengths of both results.
3rd Apr 2025, 10:12 PM
Shardis Wolfe
+ 1
In Snehils step 2 you could use the ord() function instead of isupper() and islower(). • Upper case for 64 < ASCII value < 91 • Lower case for 96 < ASCII value < 123
4th Apr 2025, 9:34 PM
Brian M.
Brian M. - avatar
0
!-- *Ramadan is going so fast Make sure to make prayers and worships as much as you can in fast* 18th March 2025 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> Heart Explosion </title> <style> body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background: #1a1a1a; overflow: hidden; } .heart-container { position: relative; cursor: pointer; } .heart { width: 120px; height: 120px; background: linear-gradient(45deg, #ff3b3b, #ff0066); position: relative; transform: rotate(45deg); transition: transform 0.3s ease; box-shadow: 0 0 40px rgba(255, 0, 102, 0.3); } .heart
4th Apr 2025, 1:22 PM
Soumyajit Pramanik
Soumyajit Pramanik - avatar
0
Brian M. Why not without ord? Just check with characters cause the comparison is lexicographic
5th Apr 2025, 10:26 AM
Snehil Pandey
Snehil Pandey - avatar