We're a place where coders share, stay up-to-date and grow their careers.
So I came across this and I had to see how short I could make it in Python. This was the shortest I could make it while keeping it nice looking. Here I use start chrome ... as I am running it on a Windows box.
import os import sys page = '' if len(sys.argv) < 2 else f'/t/{sys.argv[1]}' os.system(f'start chrome https://dev.to{page}')
So I came across this and I had to see how short I could make it in Python. This was the shortest I could make it while keeping it nice looking. Here I use start chrome ... as I am running it on a Windows box.