Home > other >  Design a Python program, enter any string, statistical case the number of letters and Numbers
Design a Python program, enter any string, statistical case the number of letters and Numbers

Time:10-06

Design a Python program, enter any string, statistical case the number of letters and Numbers

CodePudding user response:

This is the traversal,

CodePudding user response:

STR=input (" please input a string of characters: ")
Resoult={}
For I in STR:
Resoult [I]=STR. Count (I)
Print (resoult)

CodePudding user response:

Please refer to the
  • Related