├── .gitignore ├── .idea ├── .gitignore ├── Basicpython.iml ├── dataSources.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── sqldialects.xml └── vcs.xml └── begin ├── ajwvdawd.py ├── array.py ├── beginer.py ├── boolean.py ├── bot.py ├── case.py ├── class_OOP.py ├── database.db ├── database.py ├── datetime_module.py ├── def func.py ├── emaktab.py ├── for.py ├── func_database.py ├── if.py ├── integer.py ├── kutubxona.db ├── main.py ├── operators.py ├── python_decorators.py ├── random_module.py ├── test.py ├── test_database.py ├── test_db2.py └── while.py /.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore file 2 | .idea -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Basicpython.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/Basicpython.iml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/sqldialects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/sqldialects.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /begin/ajwvdawd.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /begin/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/array.py -------------------------------------------------------------------------------- /begin/beginer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/beginer.py -------------------------------------------------------------------------------- /begin/boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/boolean.py -------------------------------------------------------------------------------- /begin/bot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /begin/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/case.py -------------------------------------------------------------------------------- /begin/class_OOP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/class_OOP.py -------------------------------------------------------------------------------- /begin/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/database.db -------------------------------------------------------------------------------- /begin/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/database.py -------------------------------------------------------------------------------- /begin/datetime_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/datetime_module.py -------------------------------------------------------------------------------- /begin/def func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/def func.py -------------------------------------------------------------------------------- /begin/emaktab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/emaktab.py -------------------------------------------------------------------------------- /begin/for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/for.py -------------------------------------------------------------------------------- /begin/func_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/func_database.py -------------------------------------------------------------------------------- /begin/if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/if.py -------------------------------------------------------------------------------- /begin/integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/integer.py -------------------------------------------------------------------------------- /begin/kutubxona.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/kutubxona.db -------------------------------------------------------------------------------- /begin/main.py: -------------------------------------------------------------------------------- 1 | # import os 2 | # os.remove('') 3 | 4 | -------------------------------------------------------------------------------- /begin/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/operators.py -------------------------------------------------------------------------------- /begin/python_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/python_decorators.py -------------------------------------------------------------------------------- /begin/random_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/random_module.py -------------------------------------------------------------------------------- /begin/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/test.py -------------------------------------------------------------------------------- /begin/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/test_database.py -------------------------------------------------------------------------------- /begin/test_db2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/test_db2.py -------------------------------------------------------------------------------- /begin/while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d1yas/BASIC-PYTHON/HEAD/begin/while.py --------------------------------------------------------------------------------