美文网首页
python_基础内容

python_基础内容

作者: BULL_DEBUG | 来源:发表于2019-10-08 18:45 被阅读0次

一、注释:

1、单行注释:#(快捷键control + /)

# 这是单行注释

2、多行注释: 三单引号或三双引号

"""
多行注释
多行注释
"""
'''
多行注释
多行注释
'''

二、print输出

print('hello')

可以输出多个

print('hello', 'world', '啊')

终端:

E:\practice\python\venv\Scripts\python.exe E:/practice/python/hello.py
hello
hello world 啊

Process finished with exit code 0

可以输出整数并计算

print(200 + 300)

三、变量

# 变量使用前必须先定义
msg1 = "hello1"
msg2 = "hello2"
print(msg1)
# 删除
del msg2
# 删除的变量不能继续使用
print(msg2)

终端


image.png

四、input输入

msg3 = input("请输入你的信息:")
# 接收终端输入
print(msg3)

终端:

hello
hello1
请输入你的信息:你好啊
你好啊

Process finished with exit code 0

五、标识符

不能用关键字
查找系统关键字

import keyword
print (keyword.kwlist)

终端
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

六、数据类型

# 数据类型
# str('字符串')
# Number(数字) 整数、浮点数、复数
# bool(布尔值)
# None(空值)
# list(列表)
# tuple(元组)
# dict(字典)
# set(集合)

相关文章

  • python_基础内容

    一、注释: 1、单行注释:#(快捷键control + /) 2、多行注释: 三单引号或三双引号 二、print输...

  • Python_基础

    Python 语言类型 首先我们需要明确 Python 是动态语言;区别于静态语言比如我们熟悉的 java 需要对...

  • python_基础架构

    python内置函数 https://blog.csdn.net/oaa608868/article/detail...

  • Python_语言基础

    数据类型 以上是最常用的数据类型,对于字符串来说,也可以用双引号。变量不需要声明,不需要删除,可以直接回收适用。 ...

  • python_基础语法

    python package 也就是python包,与文件夹类似,不过python包 主要存放python脚本 注...

  • Python_函数

    Python_函数 在我们有面向对象思想后,会更加容易的理解。所以函数的章节内容会较为精简。 调用函数 Pytho...

  • Python函数的学习笔记_函数

    Python_函数 isinstance(a,int) #判断a是否为int If not (isinstance...

  • Python_爬虫_基础_01

    什么是爬虫 又称 网络机器人,是一种按照一定规则,自动抓取万维网信息的程序或者脚本。通俗的讲: 就是模拟客户端发起...

  • Python_基础_流程语句

    条件判断 if 先展示一个简单的 if 语句 根据 Python 的缩进规则,如果if语句判断是True,就把缩进...

  • Python容器的学习笔记_容器

    Python_容器 my_str ='abcd\tc' # my_str[0]='Q' print(my_str)...

网友评论

      本文标题:python_基础内容

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