(new-freelance-job) [~] $ echo '# Artificial Intelligence solutions' >> website.md _
(new-freelance-job) [~] $ echo 'My goal is to provide Artificial Intelligence, big data and other software solutions for you or your company.' >> website.md && python _
Python 3.9.4 | packaged by conda-forge | (default, May 10 2021, 22:13:33)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> with open("website.md") as file:
... print(f'{file.read()} The most frequent language I use to solve projects is Python.')_
# Artificial Intelligence solutions
My goal is to provide Artificial Intelligence, big data and other software solutions for you or your company.
The most frequent language I use to solve projects is Python.
>>>_