4 Answers
+ 2
Yes, first add the following code to your python program:
import os
os.system('touch file.png')
And then see my this code in which I had used HTML and CSS to create a form in Python.
https://code.sololearn.com/c21H2kBeTUFE/?ref=app
+ 2
Yes, you can do it very easily.
Just add these 2 lines of code to your python code:
import os
os.system('touch file.png')
For better understanding, see this code, I had included html and css in it.
https://code.sololearn.com/cXSOlhi551jL/?ref=app
+ 2
I checked your code, but can you explain a little better? I don't understand how to style the display inside python after importing os.system
+ 2
Thanks a lot! I will try it out