# Instead of..
for i in items:
print(i)
# You can use list comprehesions and do...
[print(i) for i in l]
There's several ways of doing this, link, and f-strings are the best!
print(f'Hello! My name is {name}, I am {age}, from {country} and like {hobby}.')
Create
python -m venv ./venv/
Activate
.\\venv\\Scripts\\activate
Deactivate
deactivate