In addition to being a Full Stack Developer, I'm also exploring a variety of other topics to broaden my horizons. My interests include web development, artificial intelligence and more!
Feel free to reach out to me at hitesh.dev@sisara.in if you'd like to connect or collaborate.
#!/usr/bin/env python3
__author__ = "Hitesh-Sisara"
__copyright__ = f"Copyright (c) 2023 {__author__}"
__license__ = "Private Domain"
import subprocess
res = subprocess.run(["python3" , "-c" , "print('Feel the Code not Write it')"],
capture_output=True, text=True
)
print("stdout:", res.stdout) # Output
if res.stderr != "" : print("stderr:", res.stderr) # Error