作业第0周课程导学 安装Python并运行一个简单的程序
1、 1.打开python,在提示符>>>后输入print(“Hello world!”),给出运行结果2.打开IDLE(Python),新建文件,输入程序:#YourName.pyname=input("What is your name?")adjective=input("Please enter an adjective:")noun=input("Please enter a noun:")verb=input("Please enter a verb ending in -ed:")print("Hi,",name)print("Your MadLib:")print("The",adjective,noun,verb,"over the lazy brown dog.")保存为YourName.py并运行程序,给出运行结果提示