迹忆客
计算机编程题库
WEB前端
JavaScript
React
Vue
Angular
CSS
HTML
编程语言
Python
PHP
Java
Go
TypeScript
C++
C语言
Node.js
VBA
数据库
PostgreSQL
MySQL
Redis
MongoDB
网络
算法
操作系统
基础教程
Git
Matlab
Docker
正则表达式
Bootstrap
SQL
JQuery
Matplotlib
工具
题库
>
Python
>
Python 经典面试题 基础部分二
练习:23
Python 经典面试题 基础部分二
以下代码的输出是什么? ```python print(type(1/2)) ```
★
★
★
A
<class 'float'>
B
<class 'int'>
C
NameError: '½' 未定义。
D
0.5
正确答案是:
A
正确率:
83%
解析:
½ 的输出是 0.5。 type() 显示数据的类型。
查看笔记
扫码一下
查看教程更方便