Make a kebab #
Write a function that takes a sentence as input and converts it into kebab case. Kebab case is a naming convention where spaces are replaced with hyphens "-", all letters are lowercase, and only alphabets and numbers are kept, while symbols are stripped off.
Tests #
make_kebab("Hello World")should return"hello-world"make_kebab("Python Programming Language")should return"python-programming-language"make_kebab("This Is a Sentence!")should return"this-is-a-sentence"make_kebab("Coding Is Fun!!!")should return"coding-is-fun"make_kebab("I Love Python*&^%")should return"i-love-python"
Getting Started with Python
Data Types
Python Functions
Statements in Python
Basic Debugging in Python
Basic Algorithm
Object-Oriented Programming
Error Handling
Intermediate Algorithm
Python Modules