树莓派python学习

首先我们新建一个文件夹用来存储以后学习过程中建立的py文件。

mkdir mypy

咱就在这建立,然后新建py文件vim ./mypy/print.py

然后cd ./mypy

ls查看是否成功。

然后咱开始编辑

先来一个入门程序hello world

print "hello world!"

然后执行就行。

再来一个python语法学习

try:

        print"please enter a number"

        a=int(input())

        print"the number you entered is:",a

except:

        print"input errori!"

try和except

你可能感兴趣的:(树莓派python学习)