热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

Python Pandas 面试题与答案

问题 46. Explain the purpose of the stack() and unstack() functions in Pandas.

stack() is used to pivot the columns of a DataFrame to the rows. unstack() does the reverse operation.

Example:

df.stack()

这有帮助吗? 添加评论 查看评论
 

问题 47. What is the purpose of the to_excel() function in Pandas?

to_excel() is used to write a DataFrame to an Excel file.

Example:

df.to_excel('output.xlsx', index=False)

这有帮助吗? 添加评论 查看评论
 

问题 48. How do you calculate the correlation matrix for a Pandas DataFrame?

Use the corr() function. df.corr()

这有帮助吗? 添加评论 查看评论
 

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。