'How to remove extra puncuation marks during saving forms data in django?
when ever i add data to the form i got extra puncuation marks in the value as shown in the image.
for example - name = xyz while saving i get name = ('xyz',)
Solution 1:[1]
just remove the comma you are putting after name and other field you are defining variables and that doesn't need comma .
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Pggeeks |
