Answers for "how to python command line"

0

get python to run cli commands

import os
sequence = (
	"git init",
  	"git add ."
)

for i, x in enumerate(sequence):
  print("{}. RUNNING: [{}]".format(i, x))
  os.system(x)
  
#short explanation
"""
	1) Init sequence
    2) Loop through sequence and use `os.system()` to run commands
"""
Posted by: Guest on February-19-2021
1

command for python shell

write python and press enter in terminal. 

A Python Prompt comprising of three greater-than symbols >>> appears.
Posted by: Guest on October-07-2021

Code answers related to "how to python command line"

Python Answers by Framework

Browse Popular Code Answers by Language