英文:
Need input for search line excel
问题
ValueError: 'nrows' must be an integer >= 0
我想在Excel中搜索行。
英文:
import pandas as pd
def calculadora():
nivel = input()
df = pd.read_excel("Abc.csv" , nrows = "nivel" ,)
display(df)
calculadora()
ValueError: 'nrows' must be an integer >=0
i want search line on excel.
答案1
得分: 1
如果您希望使用变量nivel
,则需要移除它周围的引号。
df = pd.read_excel("Abc.csv", nrows=nivel)
英文:
If you want the variable nivel
to be used, then you need to remove the quotes around it.
df = pd.read_excel("Abc.csv" , nrows = nivel)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论