wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, 27 people, some anonymous, worked to edit and improve it over time.
This article has been viewed 238,468 times.
Learn more...
Python is a simple yet powerful programming language to learn. It accommodates all levels of programmers from beginners to advanced programmers. Python is flexible and can work on available operating systems e.g., Mac, Windows, and Linux. Have you learned about the bare basics of python but are confused on how to apply them? Well, this article shows you how to make a program that calculates your total days, minutes, and seconds you have been alive! It is a very simple program that demonstrates how some things work in this programming language. Note that this is for users who have a basic understanding of python.
Steps
-
1Open up a new window in python shell by pressing ctrl-N or going to 'File' and 'New window'.
-
2Start with an introductory sentence. So you have to use the print function. Type below codes:
print("Let's see how long you have lived in days, minutes and seconds.")
Advertisement -
3Ask the user's name. It's nice to know what the user's name is, so type this in line 2:
- The variable "name" has now been replaced by the user's input.
name = input("name: ")
-
4Ask their age. You need to know the age, now you do the same thing as above except you have to use the "int" function, because the user will enter a number, like this:
- The variable "age" has now been replaced by the user's input.
print("now enter your age") age = int(input("age: "))
-
5Do the conversions using the user's given age.
- Once you have written this, Python automatically changes the values for days, minutes, and seconds, based on the user's input of age.
days = age * 365 minutes = age * 525948 seconds = age * 31556926
-
6Display to the user his/her information.
print(name, "has been alive for", days,"days", minutes, "minutes and", seconds, "seconds! Wow!")
-
7Congrats! you made a real program that serves a purpose! Save it and run it by going to 'run' and 'run module'. Try it out for yourself!
Community Q&A
-
QuestionWhat do I do if I get errors while trying to create a simple program?Community AnswerTry to check and read over your code. Are your variable names correct? Are there any misused brackets or symbols? Usually it will be highlighted if this is the case. If it is, try to figure out how to fix it the best you can.
-
QuestionThe program closes after I type my name and never shows me how many seconds I lived. I copied and pasted everything here. I am using Python 2.7 and can't get a newer version as I use Win XP. Do you have any suggestions for me?Community AnswerUnder python 2.7, 'input()' asks for an input to execute (a python statement). The exemple above is for python 3 which disable the direct execution of code via 'input()'. So, if you need the user to give you an input, use 'raw_input()' instead of 'input()'
-
QuestionHow do I write a comment?Cluster DuckCommunity AnswerThere are two ways to write a comment in python. A # is used for a one line comment. A """ is used for a multi line comment.