需要输入搜索行的Excel

huangapple go评论88阅读模式
英文:

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)

huangapple
  • 本文由 发表于 2023年8月5日 07:22:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/76839572.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定