在python中完成输入和输出_input_print
回忆上次内容
-
上次讲的是
-
input 函数 的参数
-
prompt
-
提示词
-
我想写一个程序
-
输入名字
-
然后对他说hello
-
并欢迎
name = input() print(name)
-
但是 这个 有点没头没尾
-
能否 有点提示(prompt) ?
name = input("what is your name:") print("Hello", name, "!") print("And Welcome!")
apple_count = input("Please enter the number of apples: ") print("There are", apple_count, "apples.")
-
这次
-
写代码完成了 输入和输出
-
关于vim 又练了一回
-
对于vim和shell
-
我们 要好好总结一下
-
以后 就不会
-
再提示得 这么详细 了
-
我们下次再说!????
-
蓝桥->
-
github->
-
gitee->