python_day1_程序交互

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_day1_程序交互相关的知识,希望对你有一定的参考价值。

程序交互

在编写程序过程中总会有程序与用户交互的场景出现,这里面提到python会使用一个方法:input

用法:

例如:请用户输入一个账号

input"Please input your username:")

这里面只是单纯的输入,但没有在存储,所以需要对此设置一个存储的变量

username = input"Please input your username:")

技术分享

这个时候我们打印username

技术分享

注释

为了增加代码的可读性,需要对代码进行注释

代码注释分单行和多行注释,单行注释用# ,多行注释用""" ... """

单行注释:

#打印hello world

print("hello world)

 多行注释:

"""
msg = {
‘egon‘:‘123‘,
‘alex‘:‘3714‘

}
"""






以上是关于python_day1_程序交互的主要内容,如果未能解决你的问题,请参考以下文章

python_day11_IO模型

Python_day_01

python_day socket 交互模拟ssh

python_day12_html

Python_Day1_基础1

铁乐学python_Day41_线程01