Hello again! This post is dedicated to anyone using their smartphones as their camera to shoot around the World. Smartphone camera is good enough to shoot a decent photo and you do not need professional or high end DSLR cameras to have the same effect. Occasionally it does especially comes to night shots. So here … Continue reading Top few mobile apps essential for photographer
Python – types of variables
Alright, so today I learnt there are 4 types of variables which can be assigned. Assigning a variable is using the Equal (=) to assign any value. Variables can only start with letters or an underscore (_), starting with numbers are invalid. Examples string1 = "Hello World" integer1 = 200 float1 = 203.1 The example … Continue reading Python – types of variables
Hello World – My first python project
Hello World has become the norm for beginners learning programming. So this is also my first time learning Python, which I got impressed when my ex-colleague coded a Python script for me as a project. The project is able to extract all data from Excel spreadsheets and combine them into 1 excel sheet and perform … Continue reading Hello World – My first python project