by Ameer Ul Islam | Apr 9, 2021 | Code, SQL
The Problem we have 2 tables user Table vote Count Table as given below: name idname 1A 2B 3C votCount idvote 13 24 37 Write a query such that it will show only the name of the user that has the top vote and it has to be in one...
by Ameer Ul Islam | Sep 20, 2018 | Code, Python, Tricks
If you have been coding for a while in python you already know you can add an item in a list using list.append(value) where list here is a variable that contains list of variables, append is a function and as parameter you will input the value you want to add at the...
by Ameer Ul Islam | Sep 18, 2018 | Code, Python, Tutorials
Number Guessing Game in python! I was learning python from this wonderful video tutorial and I usually try the problem before the tutor gives the solution. I found out that my solution is better and more full proof than theirs. It’s probably because they are...