Write a Python program to display the current date and time.
Write a Python program to display the current date and time.

Program

import datetime
def myfun():
    x = datetime.datetime.now()
    print("Current date and time : ")
    print(x.strftime("%Y-%m-%d %H:%M:%S"))
      
if __name__=="__main__":      
    myfun()

Output:

Current date and time :
2024-01-08 10:20:10


More Questions


3 . Write a Python program to display the current date and time.
4 . Write a Python program that accepts a sequence of comma-separated numbers from the user and generates a list and a tuple of those numbers.
5 . Write a Python program that accepts a filename from the user and prints the extension of the file.
6 . Write a Python program to display the first and last colors from the following list.
7 . Write a Python program that accepts an integer (n) and computes the value of n+nn+nnn.
8 . Write a Python program that prints the calendar for a given month and year.
9 . Write a Python program to calculate the number of days between two dates.
10 . Write a Python program to get the volume of a sphere with radius six.
11 . Write a Python program to calculate the sum of three given numbers. If the values are equal, return three times their sum.
12 . Write a Python program to count the number 4 in a given list.
13 . Write a Python program to get n (non-negative integer) copies of the first 2 characters of a given string. Return n copies of the whole string if the length is less than 2.



For latest job updates join Telegram Channel: https://t.me/sateeshm

Programs