why we have to form python code example
Example 1: why use python
#Hello world in Java:
public class Main {
public static void main(String[] args) {
System.out.println("hello world");
}
}
#Hello world in Python:
print('hello world')
#See?
Example 2: django get form id from request
# html
# views.py
if 'message_frm' in request.POST:
#do somethings