Write a Python program that accepts a filename from the user and prints the extension of the file.
Write a Python program that accepts a filename from the user and prints the extension of the file.

Program

def myfun():
    
    file = input("Input the Filename: ")
    f_ext = file.split(".")

    print("The extension of the file is : " + repr(f_ext[-1]))
      
if __name__=="__main__":      
    myfun()

Output:

Input the Filename: sateeshm.java
The extension of the file is : 'java'

Input the Filename: sateeshm.jsp
The extension of the file is : 'jsp'


More Questions


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.
14 . Write a Python program to test whether a passed letter is a vowel or not.
15 . Write a Python program that checks whether a specified value is contained within a group of values.



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

Programs