summaryrefslogtreecommitdiff
path: root/progs/a65.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a65.py')
-rw-r--r--progs/a65.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a65.py b/progs/a65.py
new file mode 100644
index 0000000..8b3e0fb
--- /dev/null
+++ b/progs/a65.py
@@ -0,0 +1,6 @@
+def count_char(string,char):
+ count = 0
+ for i in range(len(string)):
+ if(string[i] == char):
+ count = count + 1
+ return count \ No newline at end of file