Today is a new day isn't it? - Ajith Moni
Grateful to life, people and experiences
Wednesday, March 23, 2022
Monday, February 14, 2022
What is a free float in a share market?
Let's say a company has 70% as promotor shares, this makes 30% shares are considered free float shares.
Higher the number of free float shares, higher is the volatility and volume available for free trade.
Source and further reads:
Saturday, December 11, 2021
Covishield Vacchination Side Effects - Day1 to Day3 what happens
Hi Everyone,
I am documenting this for information purpose only. This is exactly what happened to me.
Day1: Vaccine Day
I had my bf around 9 am. I took the vaccine around 11:30 am.
I was absolutely fine till 8 pm.
9 pm - I started to suddenly yawn, along with tiredness.
Within an hour by 10 pm I had very high fever.
I took a fever tablet - paracetamol (DOLO 650mg) and went to sleep by11:30pm.
I woke up once experiencing chills and heavy shivering (as though someone was shaking my body).
Day2: 1 day after Vaccine - Fine by 6 pm
I woke up at 8 am with body pains and a headache.
My back when I couldn't sit for more than 5 mins.
I quickly had a boiled egg and banana & went back to sleep.
I forgot to take my fever tablet.
Lunch: I had a quick lunch with 4 spoons of rice,
took another fever tablet paracetamol(DOLO 650mg),
and went back to sleep.
By 6 pm when I woke up I was convinced &happy that I was better, I knew i was 80% ok.
I was able to driver a car, walk, sit and perform my routine tasks normally.
Day3: 2nd morning after Vaccine
I slept well that night, with no symptoms.
I am 82% fine with a little heavy head(not headache) and fatigue.
I should be fine in the next 3 days.
Smile! This is the new normal ...
Saturday, November 20, 2021
Python - for loop with inflation as an example for 10 years
#for loop 11/20
#print numbers from 1 to 10
#i=0
#for i in range(1):
# print(i)
# Find inflation based for an amount assuming a percentage of 8%
noOfYears=10
print('Enter inflation percentage')
inflationPercentage=float(input())
print ('Inflation Percentage is :'+str(inflationPercentage))
print('Enter amount ')
amount=float(input())
totalAmount=float(amount)
i=0
for i in range(noOfYears):
totalAmount=totalAmount+(float(totalAmount)*(inflationPercentage/100))
xTimes=int(totalAmount / amount)
#print(xTimes)
#print(totalAmount)
if xTimes==2:
print('Amount is 2x')
elif xTimes==3:
print('Amount is 3x ')
elif xTimes== 4:
print('Amount is 4x')
else:
print('Amount hasn\'t doubled yet')
print(str(totalAmount)+' after '+str(i)+' year')
print('Total inflated amount after '+str(noOfYears)+' \n for amount : '+str(amount)+' is : '+str(totalAmount))
---
Output
Enter inflation percentage
Enter inflation percentage
8
Inflation Percentage is :8.0
Enter amount
20000
Amount is 2x
43178.49994545574 after 9 year
Total inflated amount after 10
for amount : 20000.0 is : 43178.49994545574
Friday, November 19, 2021
Python WHILE CONTINUE and BREAK Example
# CONTINUE to allow user to withdraw and display balance until value 0 is used to exit(BREAK)
balance=10000;
while True:
print('****Continue example *****')
print('Enter amount to withdraw :')
val=input()
if(int(val)<0):
continue
elif(int(val)==0):
print('Exiting program')
break
else:
balance=balance-int(val)
print('balance is now :'+str(balance))
print('****End of balance****')