Python Program to Get Electronic Configuration by Atomic Number or Symbol
Python Program to Get Electronic Configuration by Atomic Number or Symbol # Import sleep function from time import sleep # Do in 'try' and except not to get error try:…
Python Program to Get Electronic Configuration by Atomic Number or Symbol # Import sleep function from time import sleep # Do in 'try' and except not to get error try:…
Python Program to Know Atomic Mass of First 30 Elements print("PROGRAM TO KNOW ATOMIC MASS OF FIRST 30 ELEMENTS") a=1 while (a>0): ele_nme=input("Enter the Name of the element: ") atm_no=int(input("Enter…
Creating Music Player using Tkinter Python Program # Importing Modules from tkinter import * from tkinter import filedialog from tkinter.ttk import Progressbar, Scale from pygame import mixer mixer.init() win…