We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50863b commit da37832Copy full SHA for da37832
0x01-python-if_else_loops_functions/101-main.py
@@ -0,0 +1,8 @@
1
+#!/usr/bin/env python3
2
+remove_char_at = __import__('101-remove_char_at').remove_char_at
3
+
4
+print(remove_char_at("Best School", 3))
5
+print(remove_char_at("Chicago", 2))
6
+print(remove_char_at("C is fun!", 0))
7
+print(remove_char_at("School", 10))
8
+print(remove_char_at("Python", -2))
0 commit comments