diff --git a/README.md b/README.md new file mode 100644 index 0000000..267da58 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +"# help-center CODERABBIT DOES THE REVIEW" diff --git a/python/simple_utils.py b/python/simple_utils.py new file mode 100644 index 0000000..3a8ece9 --- /dev/null +++ b/python/simple_utils.py @@ -0,0 +1,14 @@ +# simple_utils.py - A tiny utility library + +def reverse_string(text): + """Reverses the characters in a string.""" + return text[::-1] + +def count_words(sentence): + return len(sentence.split()) + +def celsius_to_fahrenheit(celsius): + return (celsius * 9/5) + 32 + + +This is a sample error \ No newline at end of file