数据集属于酒店,有一个列名称“calender updated”。下面是此列中的值。可以帮助将月份转换为几天吗?
<?php
$url = "http://www.ucertify.com";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
$file = fopen("web_content.txt","w");
fwrite($file,$output);
fclose($file);
?>
答案 0 :(得分:0)
欢迎使用Stack Overflow。如果有机会,请查看帮助页面,了解如何设置问题格式以增加某人能够为您提供帮助的机会。
如何在python pandas中将周,月转换为几天?
查看dateparser模块。我认为这将完全符合您的要求。