美文网首页树莓派学习
树莓派python学习

树莓派python学习

作者: Allen100 | 来源:发表于2020-04-07 21:31 被阅读0次

    首先我们新建一个文件夹用来存储以后学习过程中建立的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学习

        本文链接:https://www.haomeiwen.com/subject/dcegphtx.html