How To Set Run Arguments For Python When Using Wing Ide?
how to set run arguments for python when using wing IDE? D:\TEST\djgprj ├─.idea ├─testdjgprj.wpr ├─testdjgprj.wpu └─testdjg ├─.idea ├─testdjg �
Solution 1:
Right click on the file (either in editor or Project tool) and select Properties and set the run args under Debug > Run Arguments.
If you mean sending arguments to Python itself and not your code, this is the Debug > Python Options property instead (the default is -u for unbuffered output).
Post a Comment for "How To Set Run Arguments For Python When Using Wing Ide?"