-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
somy function names declared in main package
- Loading branch information
Showing
1 changed file
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
def name(): | ||
return ('I am A T M Ragib Raihan') | ||
return ('I am A T M Ragib Raihan') | ||
|
||
|
||
def rm(): | ||
pass | ||
|
||
|
||
def ls(file_extension='', tree=False): | ||
if file_extension: | ||
if type(file_extension) is str: | ||
print('Files with {} extention') | ||
elif (type(file_extension) is list) or (type(file_extension) is tuple): | ||
print('Files with {} extentions'.format(file_extension)) | ||
else: | ||
raise Exception("file_extension parameter should be either a string or a list or a tuple") | ||
|
||
def cat(): | ||
pass | ||
|
||
def cd(): | ||
pass | ||
|
||
def touch(): | ||
pass | ||
|
||
def mkdir(): | ||
pass | ||
|
||
# get() | ||
# soup() |