import openpyxl
# Open the workbook and select the sheet
wb = openpyxl.load_workbook('file.xlsx')
sheet = wb['Sheet1']
# Iterate through the rows of the sheet
for row in sheet.iter_rows():
# Get the value in the first cell of the row
value = row[0].value
# Append the value to the URL
url = "http://www.example.com/" + value
# Print the URL
print(url)
1条答案
按热度按时间kgsdhlau1#
下面是一个如何使用Python将Excel工作表中的字符串附加到URL的示例:
此代码将打开工作簿file.xlsx并选择名为Sheet1的工作表。然后,它将遍历工作表中的每一行并获取该行第一个单元格中的值。它将此值附加到URL http://www.example.com/,并打印生成的URL。
您可以修改此代码以满足您的需要,例如,通过更改从中获取值的列或对生成的URL执行某些操作(如向URL发出请求并解析响应)。
重新生成响应