Posts
So where are you guys from?
I'm from West Bengal, but am an NRI living in Dubai.(No judgement) Also let's keep this community in English for a link language for all teenagers across India.
When one learn a new language, the 1st thing one should learn is to say is "Help, I'm dying!", instead of a greeting.
You never know when you might need to say "Help, I'm dying" in a foreign country, and the sooner you learn how to say it in the local language, the better your chances of survival are.
However, your chances of survival don't depend on whether you know the local greeting or not, since it's mostly used in a casual conversation, not a life-threatening situation. Therefore, one should 1st learn how to say the phrase "Help, I'm dying", and then learn the greeting.
Why is the periodic table split into 3 parts; everything else, lactinides, and actinides?
Why can't it just be 1 table, with the lactinides and actinides following the same rules as the others?(Group number=Number of valence electrons and Period humber=Number of shells)
How is pressure a scalar quantity?
Pressire acts on all directions, which means that pressure has a direction to act upon, allbeit plural. A scalar quantity is a force that has no direction to act upon. How is pressure a scalar quantity? Shouldn't it be a vector quantity?
Why doesn't electricity get affected by gravity?
Electricity is in the form of electrons, which have mass. Everything that has mass is influenced by gravity. Therefore, why doesn't electricity fall down to the ground due to being influenced by gravity?
Why does gravity exist?
The reason planets orbit stars is due to gravity. The reason stars glow is due to heat. What's the reason for gravity existing?
Why isn't there a separate kingdom for viruses.
There are 5 kingdoms; Kingdom Animalia, Kingdom Plantae, Kingdom Fungi, Kingdom Minera, and Kingdom Protistae. Why isn't there another one for viruses, since they fit in neither of these kingdoms, due to the lack of DNA?
Why do ribs have spaces between them?
Anyone who knows how a skeleton looks like knows that there are spaces between the ribs. However, why does it have gaps between them? Why isn't it a single shell?
Why don't lysosomes digest cancer cells?
Whenever there is something wrong in a cell, the lysosome will digesting the cell itself, so that it doesn't disrupt any of the other cells. However, an example of when this should happen in cancer. Why don't lysosomes digest the cell then?
With how common human-exposure to radiation is becoming, the primary base system might not be base-10 anymore.
View original on lemmy.worldIf dominant genes override recessive genes, how do recessive genes still exist?
Shouldn't they have disappeared via beign overriden by dominant genes a long time ago?
Another program I coded in high-school to draw a triangle.
Triangle=turtle.Turtle#Making the turtle easily callable. Side_1=float(input("How many pixels should the 1st side of the triangle be?"))#Asking the user the length of the 1st side of the triangle. Side_2=float(input("How many pixels should the 2nd side of the triangle be?"))#Asking the user the length of the 2nd side of the triangle. Side_3=float(input("How many pixels should the 3rd side of the triangle be?"))#Asking the user the length of the 3rd side of the triangle. Angle_1=float(input("How many degrees should the 1st angle be?"))#Asking the user the measure of the 1st angle of the triangle. Angle_2=float(input("How many degrees should the 1st angle be?"))#Asking the user the measure of the 2nd angle of the triangle. Angle_3=float(input("How many degrees should the 1st angle be?"))#Asking the user the measure of the 3rd angle of the triangle. if Angle_1+Angle_2+Angle_3!= 180:#If the angles of the triangle do not add up to 180 degrees. print("The angles of a traingle must add up to 180 degrees.") elif (Side_1>Side_2 and Angle_1<Angle_2) or (Side_2>Side_1 and Angle_2>Angle_1) or (Side_3>Side_2 and Angle_3>Angle_2) or (Side_3<Side_2 and Angle_3<Angle_2) or (Side_3>Side_1 and Angle_3>Angle_1):#If both the side and its opposing angle are larger than another side and its respective opposive angle. print("If an angle is greater than another angle, then the side opposing the 2nd angle should be greater than the side opposing the 1st angle.")#Printing an appropriate message. else:#If everything works fine. pass#The rest fo the code happens. class Side(Triangle):#Drawing a side. def init(self,Side,Angle):#Making the attributes easily callable. self.Side=Side#The side of the triangle. self.Angle=Angle#The angle of the triangle. def Draw(self):#Drawing a side. Triangle.forward(self.Side)#Drawing the side. Triangle.left(self.Angle)#Turning the pen. Sides=[Side_1,Side_2,Side_3]#The sides of the triangle. Angles=[Angle_1,Angle_2,Angle_3]#The angles of the triangle. for Side_number in range(0,2):#This loop will run until all 3 sides have been drawn. Side=Side(Sides[Side_number],Angles[Side_number])#Creating an object for the sides and angles. Side.Draw#Drawing the sides.