Как я могу импортировать переменные из терминала в оболочку? - PullRequest
0 голосов
/ 12 января 2019

Любительский вопрос здесь, теперь я знаю, как использовать команду ARGV в терминале, но мне нравится делать обратное, я не уверен, как это назвать.

ex (в режиме ожидания)

from sys import argv
script, one, two, three, four=argv
print("the script is called:", script)
print("the first variable is called:", one)
print("the second variable is called:", two)
print("the third variable is called:", three)
print("the fourth variable is called:", four)

в терминале

documents/user python 3.py do this backwards lol

Я получаю (в терминале)

('the script is called:', '3.py')
('the first variable is called:', 'do')
('the second variable is called:', 'this')
('the third variable is called:', 'backwards')
('the fourth variable is called:', 'lol')

это работает, но я хочу, чтобы конечный вывод был в оболочке, а не в терминале, любая помощь приветствуется

...