Python Basic Programs
Python Basic Programs
Python Basic Programs
BASICS
15. Write a Python program to display the current date and time.
Sample Output :
Current date and time :
2014-07-05 14:34:14
16. Write a Python program which accepts the user's first and last
name and print them in reverse order with a space between them.
18. Write a Python program to display the first and last colors from the
following list.
color_list = ["Red","Green","White" ,"Black"]
19. Write a Python program that accepts an integer (n) and computes
the value of n+nn+nnn.
Sample value of n is 5
Expected Result : 615
21. Write a Python program to get the volume of a sphere with radius
6.
24. Write a Python program to count the given number in a given list.
30. Write a Python program to get the least common multiple (LCM) of
two positive integers.
33. Write a Python program that will return true if the two given integer
values are equal or their sum or difference is 5.
34. Write a Python program to add two objects if both objects are an
integer type.
35. Write a Python program to display your details like name, age,
address in three different lines.
37. Write a Python program to convert height (in feet and inches) to
centimeters.
38. Write a Python program to convert the distance (in feet) to inches,
yards, and miles.