Skip to content

Commit f6dee29

Browse files
committed
v0.0.3 Added remove_spaces function
1 parent 0ffba37 commit f6dee29

File tree

7 files changed

+32
-7
lines changed

7 files changed

+32
-7
lines changed

CHANGELOG.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
Change Log
22
==========
33

4-
0.0.2 (8/30/201)
5-
----------------
4+
0.0.3 (8/30/2021)
5+
-----------------
6+
- Added a remove_spaces Function
7+
8+
0.0.2 (8/30/2021)
9+
-----------------
610
- Added palindrome Function
711

812
0.0.1 (8/29/2021)

DOCS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,17 @@ Print Example:
8787
```python
8888
print(palindrome(word))
8989
```
90+
91+
### remove_spaces
92+
93+
How to use:
94+
95+
```python
96+
remove_spaces(field)
97+
```
98+
99+
Print Example:
100+
101+
```python
102+
print(remove_spaces(field))
103+
```

dist/techdevutil-0.0.2.tar.gz

-2.28 KB
Binary file not shown.

dist/techdevutil-0.0.3.tar.gz

2.33 KB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='techdevutil',
13-
version='0.0.2',
13+
version='0.0.3',
1414
description='A util library',
1515
long_description=open('README.txt').read() + '\n\n' + open('CHANGELOG.txt').read(),
1616
url='',

techdevutil.egg-info/PKG-INFO

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.1
22
Name: techdevutil
3-
Version: 0.0.2
3+
Version: 0.0.3
44
Summary: A util library
55
Home-page: UNKNOWN
66
Author: techpluscraft
@@ -11,8 +11,12 @@ Description: This is a util extension by techpluscraft with many functions
1111
Change Log
1212
==========
1313

14-
0.0.2 (8/30/201)
15-
----------------
14+
0.0.3 (8/30/2021)
15+
-----------------
16+
- Added a remove_spaces Function
17+
18+
0.0.2 (8/30/2021)
19+
-----------------
1620
- Added palindrome Function
1721

1822
0.0.1 (8/29/2021)

techdevutil/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ def palindrome(word):
1616
if word == reversedword:
1717
return(f"{word} is a palindrome")
1818
else:
19-
return(f"{word} is not a palindrome")
19+
return(f"{word} is not a palindrome")
20+
21+
def remove_spaces(field):
22+
return(field.split( ))

0 commit comments

Comments
 (0)