First Commit
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4213b64
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/venv/
+.idea
\ No newline at end of file
diff --git a/demo.py b/demo.py
new file mode 100644
index 0000000..9c7877c
--- /dev/null
+++ b/demo.py
@@ -0,0 +1,81 @@
+def run_custome():
+ print "class ...."
+ # print "my name is {0}".format("ehsan")
+ # age = 30
+ # if age > 30:
+ # print("welcome")
+ # elif age <= 30:
+ # print "not welcome"
+ # print range(0, 20, 2)
+ # for i in range(0, 20):
+ # print i
+ # number = "123,123,432,533,334"
+ # clean_number = ""
+ # array = ["ehsan", "yousefi"]
+ #
+ # for i in range(0, len(number)):
+ # if number[i] in "0123456789":
+ # clean_number += number[i]
+ # print clean_number
+
+ # i = 0
+ # while i < 20:
+ # print i
+ # i += 1
+
+ # list1 = [8, 2, 3, 8, 4, 2, 3, 5, 7]
+ # list1.append(9)
+ #
+ # print sorted(list1)
+ # print list1
+ #
+ # my_list = ["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]
+ #
+ # my_iterator = iter(my_list)
+ #
+ # print my_iterator.next()
+ #
+ # for i in range(0, len(my_list) - 1):
+ # next_item = next(my_iterator)
+ # print next_item
+ #
+ # print('=' * 40)
+ #
+ # user = "ehsan yousefi", 25, "tehran"
+ #
+ # name, age, city = user
+ #
+ # print name
+ # print age
+ # print city
+
+ # my_dict = {
+ # "name": "ehsan",
+ # "last_name": "yousefi"
+ # }
+ # my_dict = {}
+ # my_dict["name"] = "ehsan"
+ # my_dict["city"] = "tehran"
+ # del my_dict["city"]
+ # # print my_dict.keys()
+ # for i in my_dict.keys():
+ # print my_dict[i]
+ #
+ # even = set([3, 3, "3", 3, 3])
+ # print(sorted(even))
+
+
+if __name__ == "__main__":
+ run_custome()
+
+# module_name,
+# package_name,
+# ClassName,
+# method_name,
+# ExceptionName,
+# function_name,
+# GLOBAL_CONSTANT_NAME,
+# global_var_name,
+# instance_var_name,
+# function_parameter_name,
+# local_var_name
diff --git a/variables/__init__.py b/variables/__init__.py
new file mode 100644
index 0000000..115b4ea
--- /dev/null
+++ b/variables/__init__.py
@@ -0,0 +1 @@
+print "this is init ..."
diff --git a/variables/__init__.pyc b/variables/__init__.pyc
new file mode 100644
index 0000000..de5d60d
--- /dev/null
+++ b/variables/__init__.pyc
Binary files differ
diff --git a/variables/simple_variable.py b/variables/simple_variable.py
new file mode 100644
index 0000000..c4c9f81
--- /dev/null
+++ b/variables/simple_variable.py
@@ -0,0 +1 @@
+# print __name__
diff --git a/variables/simple_variable.pyc b/variables/simple_variable.pyc
new file mode 100644
index 0000000..464fdc8
--- /dev/null
+++ b/variables/simple_variable.pyc
Binary files differ