diff options
Diffstat (limited to 'progs/a528.py')
-rw-r--r-- | progs/a528.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/a528.py b/progs/a528.py new file mode 100644 index 0000000..e6f7c73 --- /dev/null +++ b/progs/a528.py @@ -0,0 +1,7 @@ +def count_char_position(str1):
+ count_chars = 0
+ for i in range(len(str1)):
+ if ((i == ord(str1[i]) - ord('A')) or
+ (i == ord(str1[i]) - ord('a'))):
+ count_chars += 1
+ return count_chars
\ No newline at end of file |