Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 25, 2021 05:02 pm GMT

Learning Python - Week 3

This week I continued to learn the control flow in Python from last week. What I want to focus on in this post is accepting the input from a user. Having a user input information is very easy, all you need is the input function and as the argument for the function you pass in the text or information that you want to see in the console so that the user knows what information they need to put. Here is an example of how to use the input function:

name = input('Enter your name: ')print("Hello there " + name.strip()) # strip removes any white spacesage = input('Enter your age: ') # input returns a string not an integerprint(name.strip() + "... you are " + str(age.strip()) + " years old")print(name.strip() + "... you will be " + str(5 + int(age)) + " in 5 years")

The name variable accepts an input of name and the age variable accepts the input of your age. When you run the program it will say:
Enter your name:
You will enter your name and press enter. The strip function at the end is a way to remove the white space meaning if you happen to add a lot of spaces before you enter your name, it will remove it. Next is the age, when you put your age in it is not an integer, it is a string. So when you press enter it will say
[your name] you are [your age] years old and then it will say [your name], you will be [add 5 to your age] in five years.
This was a quick practice and this is what I really like to do when it comes to programming, having a user experience. I am sure I will be able to have a more advanced way of having a user experience in the future but for now this is what I know. I know this is a short post but it was for a good reason. Week 4 will be a whole new section focusing on packages, modules and object oriented programming. Its still a fun time learning this and I will talk to you guys next week!


Original Link: https://dev.to/evanrpavone/learning-python-week-4-7i8

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To