Posts

Showing posts from March, 2015

Should I learn Python?

Image
Should I learn Python? If you haven't programmed before, i would use Python 100% until you can at least make a simple game like snake or something. Python is much simpler than Java to understand at first. Java has things you wont understand why you need to add to your code. Python makes you understand programming so effortlessly. I can write a program right here for example. ----------------------------------------------------------------------------------------------- you = input('What is your age?') friend = input('What is your friends age?') if you > friend: print('You are older than your friend') elif you < friend: print('You are younger than your friend') else: print('You are the same age as your friend') ----------------------------------------------------------------------------------------------- That is just an example to hopefully show how you simple the program is to use. Also i haven't used the