diff --git a/.ipynb_checkpoints/Untitled-checkpoint.ipynb b/.ipynb_checkpoints/Untitled-checkpoint.ipynb deleted file mode 100644 index 363fcab..0000000 --- a/.ipynb_checkpoints/Untitled-checkpoint.ipynb +++ /dev/null @@ -1,6 +0,0 @@ -{ - "cells": [], - "metadata": {}, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/.ipynb_checkpoints/odd_even_num.py-checkpoint.ipynb b/.ipynb_checkpoints/odd_even_num.py-checkpoint.ipynb deleted file mode 100644 index 363fcab..0000000 --- a/.ipynb_checkpoints/odd_even_num.py-checkpoint.ipynb +++ /dev/null @@ -1,6 +0,0 @@ -{ - "cells": [], - "metadata": {}, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/.ipynb_checkpoints/result.py-checkpoint.ipynb b/.ipynb_checkpoints/result.py-checkpoint.ipynb deleted file mode 100644 index 363fcab..0000000 --- a/.ipynb_checkpoints/result.py-checkpoint.ipynb +++ /dev/null @@ -1,6 +0,0 @@ -{ - "cells": [], - "metadata": {}, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/README.md b/README.md new file mode 100644 index 0000000..727598e --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# python_modules \ No newline at end of file diff --git a/Readme.md b/Readme.md deleted file mode 100644 index e737097..0000000 --- a/Readme.md +++ /dev/null @@ -1,4 +0,0 @@ -# Modules -## --------> Create Modules -## --------> Import Modules -## --------> Implement Modules \ No newline at end of file diff --git a/Untitled.ipynb b/Untitled.ipynb deleted file mode 100644 index 363fcab..0000000 --- a/Untitled.ipynb +++ /dev/null @@ -1,6 +0,0 @@ -{ - "cells": [], - "metadata": {}, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/__pycache__/add_module.cpython-39.pyc b/__pycache__/add_module.cpython-39.pyc deleted file mode 100644 index ba712dd..0000000 Binary files a/__pycache__/add_module.cpython-39.pyc and /dev/null differ diff --git a/__pycache__/multiply_module.cpython-39.pyc b/__pycache__/multiply_module.cpython-39.pyc deleted file mode 100644 index 7ad40f3..0000000 Binary files a/__pycache__/multiply_module.cpython-39.pyc and /dev/null differ diff --git a/__pycache__/odd_even.cpython-39.pyc b/__pycache__/odd_even.cpython-39.pyc deleted file mode 100644 index dd398ad..0000000 Binary files a/__pycache__/odd_even.cpython-39.pyc and /dev/null differ diff --git a/__pycache__/vowel.cpython-39.pyc b/__pycache__/vowel.cpython-39.pyc deleted file mode 100644 index dfcfe94..0000000 Binary files a/__pycache__/vowel.cpython-39.pyc and /dev/null differ diff --git a/add.py b/add.py deleted file mode 100644 index 49c6c91..0000000 --- a/add.py +++ /dev/null @@ -1,3 +0,0 @@ -import add_module -result = add_module.add(8,9) -print(result) \ No newline at end of file diff --git a/add_module.py b/add_module.py deleted file mode 100644 index 7c69775..0000000 --- a/add_module.py +++ /dev/null @@ -1,6 +0,0 @@ -'''This is custom module.''' - -def add(x, y): - '''this is add function - to sum of two numbers.''' - return x + y diff --git a/check_vowel.py b/check_vowel.py deleted file mode 100644 index c76a2ca..0000000 --- a/check_vowel.py +++ /dev/null @@ -1,3 +0,0 @@ -import vowel -result=vowel.latter('l') -print(result) \ No newline at end of file diff --git a/multiply.py b/multiply.py deleted file mode 100644 index ff8ce19..0000000 --- a/multiply.py +++ /dev/null @@ -1,3 +0,0 @@ -import multiply_module -result=multiply_module.multi(8,9) -print(result) \ No newline at end of file diff --git a/multiply_module.py b/multiply_module.py deleted file mode 100644 index 3c004ee..0000000 --- a/multiply_module.py +++ /dev/null @@ -1,5 +0,0 @@ -'''this is costom function''' -def multi(x,y): - '''this is multiplication function - to multiply of two numbers''' - return(x*y) \ No newline at end of file diff --git a/odd.py b/odd.py deleted file mode 100644 index e69de29..0000000 diff --git a/odd_even.py b/odd_even.py deleted file mode 100644 index 9750314..0000000 --- a/odd_even.py +++ /dev/null @@ -1,10 +0,0 @@ -'''this is costom function''' -def number(*num): - even=[] - odd=[] - for i in num: - if i%2==0: - even.append(i) - else: - odd.append(i) - return even , odd diff --git a/odd_even_num.py b/odd_even_num.py deleted file mode 100644 index e69de29..0000000 diff --git a/result.py.ipynb b/result.py.ipynb deleted file mode 100644 index b974b14..0000000 --- a/result.py.ipynb +++ /dev/null @@ -1,49 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "id": "5e6a51f9", - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6d958612", - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7def5eb2", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.12" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/sep_odd_even_number.py b/sep_odd_even_number.py deleted file mode 100644 index 2538dc0..0000000 --- a/sep_odd_even_number.py +++ /dev/null @@ -1,3 +0,0 @@ -import odd_even -value=odd_even.number(5,4,6,9,8,5,6,8,17) -print(value) \ No newline at end of file diff --git a/vowel.py b/vowel.py deleted file mode 100644 index c97fd83..0000000 --- a/vowel.py +++ /dev/null @@ -1,9 +0,0 @@ -'''this is costom function''' -def latter(*alpha): - vowel=[] - for i in alpha: - if i=='a'or i=='e' or i=='i' or i=='o' or i=='u': - vowel.append(i) - else: - pass - return vowel \ No newline at end of file