我正在使用randomuser.me API
生成随机用户CSV文件。
程序应该将CSV转换为HTML表。
我试图跳过列[0, 3, 4]
以不在生成的HTML表中显示。
为此,我尝试使用for-loop
和if-condition
。
问题是循环中的变量column
不是int
,我无法创建条件if (int(column) == 0 and int(column) == 3 and int(column) == 4)
。
我非常感谢指出解决方案如何解决它。
import webbrowser
import csv
import sys
import requests
if len(sys.argv) < 2:
print("Usage: project.py <htmlFile>")
exit(0)
url = 'https://randomuser.me/api/?results=2&format=csv&inc=name,picture'
with requests.Session() as s:
download = s.get(url)
decodedContent = download.content.decode('utf-8')
csvFile = list(csv.reader(decodedContent.splitlines(), delimiter=','))
# Create the HTML file
htmlFile = open(sys.argv[1], "w")
# Fills up HTM code
# Remove BOM from UTF-8 (wierd symbols in the beggining of table)
htmlFile.write('<html><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><link rel="stylesheet" type="text/css" href="style.css"><head><title>Tabela</title></head><body><table>')
# Read a single row from the CSV file
for row in csvFile:
# Create a new row in the table
htmlFile.write('<tr>');
# For each column
for column in row:
if (int(column) == 0 and int(column) == 3 and int(column) == 4):
continue
else:
htmlFile.write('<td>' + column + '</td>')
htmlFile.write('</tr>')
htmlFile.write('</table></body></html>')
webbrowser.open_new_tab('index.html')
答案 0 :(得分:0)
您可以使用BasicScheme
从UsernamePasswordCredentials
中删除条目。所以,按照相反的顺序,摆脱它们:
del
使用反向顺序很重要,因为从列表中删除项目会更改该项目后所有内容的编号。所以总是从最后一个到第一个。
答案 1 :(得分:0)
我不熟悉您正在使用的RandomUser API,但从逻辑上讲,我不希望以下语句成为现实:
int(column) == 0 and int(column) == 3 and int(column) == 4
列可以同时等于所有这些值吗?似乎不太可能。我希望该列可以是第0列 或 第3列 或 第4列。
答案 2 :(得分:0)
感谢您的帮助。
正如Austin Hastings所说,我在CSV文件中删除了不需要的列
for row in csvFile:
for column in [4,3,0]:
del row[column]