Skip to main content

Django Notepad

 Django Web Apps: How to Structure Them:

https://www.youtube.com/watch?v=5yJe443rOBw


http://slav0nic.org.ua/static/books/python/The%20Definitive%20Guide%20to%20Django%20-%20Apress.pdf



before django


2. Learn pip and functions

3. Learn what are variables

4. Learn Data types

5. Basic functions using variables

6. If/Else and other conditionals

7. Operators in Python

8. I/O 

9. Move on to loops

10. Functions

11. Lists

12. Tuples

13. Dictionaries

14. Try making simple games like Tic-Tac-Toe using the above topics




1.https://web.bii.a-star.edu.sg/~liangzhu/2017/11/02/linuxcommandline/automatetheboringstuffwithpython_new.pdf

2.https://inventwithpython.com/inventwithpython_3rd.pdf

3.https://inventwithpython.com/IYOCGwP_book1.pdf

4.http://ineasysteps.com/wp-content/uploads/2018/07/Python-in-easy-steps-2nd-Ed-TOCCh1.pdf




PYTHON EBOOKS

https://files.meetup.com/18552511/Learn%20Python%20The%20Hard%20Way%203rd%20Edition%20V413HAV.pdf

https://cfm.ehu.es/ricardo/docs/python/Learning_Python.pdf

http://ce.sharif.edu/courses/97-98/2/ce153-3/resources/root/Text%20Books/An%20Introduction%20to%20Computer%20Science.pdf

(EVERYTHIING OF PYTHON)http://index-of.es/Python/Core.Python.Applications.Programming.3rd.Edition.pdf

Comments

Popular posts from this blog

Got an error while coding in django

 error is in an element name "price" in model.py. error:    return field.get_db_prep_save(self._effective_default(field), self.conne ction)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 823, in get_db_prep_save     return self.get_db_prep_value(value, connection=connection, prepared=Fal se)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 818, in get_db_prep_value     value = self.get_prep_value(value)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 1776, in get_prep_value     raise e.__class__( ValueError: Field 'price' expected a number but got ''. solution:Go to migrations file and delete all the auto generated migration files related to element "price" and code correctly in models.py file and ru...