摘要:
#include <iostream> int main() { int v[] = {1, 2, 3, 4, 5}; for(auto& x:v) std::cout<<x<<" "; std::cout<<std::endl; return 0;} We use auto where we do 阅读全文
摘要:
#!/usr/bin/python3 import pandas as pd def main(): df_iport = pd.read_excel('./ip-port.xlsx', sheet_name=0) for i in range(df_iport['目标地址'].__len__()) 阅读全文