Skip to content

Commit da37832

Browse files
committed
Add 101-main.py file
1 parent c50863b commit da37832

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)