summaryrefslogtreecommitdiff
path: root/progs/a740.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a740.py')
-rw-r--r--progs/a740.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/a740.py b/progs/a740.py
new file mode 100644
index 0000000..a0f32cf
--- /dev/null
+++ b/progs/a740.py
@@ -0,0 +1,8 @@
+def remove_Char(s,c) :
+ counts = s.count(c)
+ s = list(s)
+ while counts :
+ s.remove(c)
+ counts -= 1
+ s = '' . join(s)
+ return (s) \ No newline at end of file