I need to add description and other param also in JsonMaker.py #4
-
|
what will be the changes in code if i need to add extra parameters like description, because in your code it was common and pre-written for all??? |
Beta Was this translation helpful? Give feedback.
Answered by
rohan472000
Apr 13, 2023
Replies: 1 comment 1 reply
-
|
In case you need to add any parameters , first you should define that in cloumn.txt tables for every column in a row(separately), like-
and then add like this |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rohit777anand
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In case you need to add any parameters , first you should define that in cloumn.txt tables for every column in a row(separately), like-
name, type, desc, age ----> tom, male, student, 23and then add like this
desc = values[2]andage = values[3]