日付を取得し、ドット形式で表示する方法


  1. Pythonのdatetimeモジュールを使用する方法:
import datetime
# 現在の日付を取得
current_date = datetime.date.today()
# ドット形式で日付を表示
formatted_date = current_date.strftime("%Y.%m.%d")
print(formatted_date)
  1. JavaScriptを使用する方法:
// 現在の日付を取得
var currentDate = new Date();
// ドット形式で日付を表示
var formattedDate = currentDate.getFullYear() + "." + (currentDate.getMonth() + 1) + "." + currentDate.getDate();
console.log(formattedDate);
  1. PHPを使用する方法:
// 現在の日付を取得
$currentDate = date("Y.m.d");
// ドット形式で日付を表示
echo $currentDate;

これらの方法は、それぞれのプログラミング言語で日付を取得し、ドット形式で表示するための基本的なコードです。他のプログラミング言語でも同様の方法が利用できる場合がありますが、ここでは代表的な3つの言語に焦点を当てました。