COMP9021 Principles of Programming WEEK2 Optional

Python运行方法详解

1.IDLE

1.1 新建file后选择路径存储,快捷键F5在shell中运行,好处是容易编辑,且可以保存,关闭shell后依然存在

def say_hello(you):
    print(f"hello {you}!")

def say_bye(you):
    print(f"bye {you}!")

1.2 直接在shell中运行,好处是运行方便,coding中调试不确定的语法,或者做些debug。

2.Terminal (Linux/Mac OS的shell)

2.1 Terminal中使用python/python3命令运行.py文件,例如课上编辑的say_something.py,运行命令是python3 say_something.py
2.2 Terminal中输入python/python3命令
(1)如果current working directory下包含要运行的文件,则可以直接import .py文件。

import say_something
say_something.say_hello("Jupyter")
>>> Hello Jupiter!

from say_something import say_hello
#只import了函数say_hello,其他函数无法运行
say_hello("Jupyter")
>>> Hello Jupiter!

from say_something import *
#*代表wild card,import了say_something的所有函数,都可以运行
say_hello("Jupyter")
>>> Hello Jupyter!
say_bye("Jupyter")
>>> Bye Jupyter!

(2)如果current working directory下不包含要运行的文件,则可以把文件的路径写入python的path读取list中。

查看python的path读取list,先打开terminal
方法1:
python3
>>>from sys import path
>>>path
方法2:
echo $PATH

MAC增加sys.path的路径,先打开terminal
mkdir -p Python/3.6/lib/python/site-packages
#创建路径
echo '路径' >> Python/3.6/lib/python/site-packages/my_path.pth
#将'路径' 添加到my_path.pth文件中,例如'路径'是'/Users/comp9021/Documents

import '路径' as abc
#如果‘路径’过长,可以使用上面的语法用另一个变量替代,例如课上import 'Lectures.Lecture_2.say_something as ss

2.3 Terminal中的vi(visual)界面
vi界面基本操作,命令":q"直接退出,命令":wq"退出保存

创建一个python的命令say_hello
vi say_hello
#进入vi界面

!#/usr/local/bin/python3 #下文用python语言编译
print("Hello world!")
:wq

chmod a+x say_hello
#赋予say_hello运行的权限

往期回顾
COMP9021 Principles of Programming WEEK1 Optional
COMP9021 Principles of Programming WEEK1

你可能感兴趣的:(COMP9021 Principles of Programming WEEK2 Optional)