Python tkinter化学元素周期表2.0版本

前言

这一个版本相较于1.0版,页面采用透明形式,并且增加了更多细节,诸如族之类。

源码

from tkinter import *

window= Tk()
window.title('元素周期表')
window.geometry('930x890+100+100')
window.attributes("-alpha", 0.9)
window.resizable(False, False)

L = Label(window, text = '元素周期表',font=('微软雅黑',30))

#例
introduceelement1 = Label(window,text = '原子序数↘      ↙化学符号',font=('微软雅黑',7)) 
introduceelement1.place(x=200,y=40)
introduceelement2 = Label(window,text = '         95   Am',font=('微软雅黑',10))
introduceelement2.place(x=200,y=60)
introduceelement3 = Label(window,text = '            镅',font=('微软雅黑',20))
introduceelement3.place(x=150,y=80)
introduceelement4 = Label(window,text = '元素名称 ↗(243)↰',font=('微软雅黑',10))
introduceelement4.place(x=180,y=120)
introduceelement5 = Label(window,text = '                 相对原子质量',font=('微软雅黑',10))
introduceelement5.place(x=200,y=140)

#族
FamilyIA = Label(window,text = ' IA族',font=('微软雅黑',10), relief=GROOVE)
FamilyIA.place(x=10,y=40)
FamilyIIA = Label(window,text = 'IIA族',font=('微软雅黑',10), relief=GROOVE)
FamilyIIA.place(x=60,y=120)
FamilyIIIB = Label(window,text = 'IIIB族',font=('微软雅黑',10), relief=GROOVE)
FamilyIIIB.place(x=110,y=280)
FamilyIVB = Label(window,text = 'IVB族',font=('微软雅黑',10), relief=GROOVE)
FamilyIVB.place(x=170,y=280)
FamilyVB = Label(window,text = ' VB族',font=('微软雅黑',10), relief=GROOVE)
FamilyVB.place(x=230,y=280)
FamilyVIB = Label(window,text = 'VIB族',font=('微软雅黑',10), relief=GROOVE)
FamilyVIB.place(x=280,y=280)
FamilyVIIB = Label(window,text = 'VIIB族',font=('微软雅黑',10), relief=GROOVE)
FamilyVIIB.place(x=330,y=280)
FamilyIB = Label(window,text = '  IB族',font=('微软雅黑',10), relief=GROOVE)
FamilyIB.place(x=530,y=280)
FamilyIIB = Label(window,text = ' IIB族',font=('微软雅黑',10), relief=GROOVE)
FamilyIIB.place(x=580,y=280)
FamilyIIIA = Label(window,text = ' IIIA族',font=('微软雅黑',10), relief=GROOVE)
FamilyIIIA.place(x=630,y=120)
FamilyIVA = Label(window,text = ' IVA族',font=('微软雅黑',10), relief=GROOVE)
FamilyIVA.place(x=680,y=120)
FamilyVA = Label(window,text = ' VA族',font=('微软雅黑',10), relief=GROOVE)
FamilyVA.place(x=730,y=120)
FamilyVIA = Label(window,text = ' VIA族',font=('微软雅黑',10), relief=GROOVE)
FamilyVIA.place(x=780,y=120)
FamilyVIIA = Label(window,text = ' VIIA族',font=('微软雅黑',10), relief=GROOVE)
FamilyVIIA.place(x=830,y=120)
Family0 = Label(window,text = ' 0族',font=('微软雅黑',10), relief=GROOVE)
Family0.place(x=880,y=40)
FamilyVIII = Label(window,text = '              VIII族              ' ,font=('微软雅黑',10), relief=GROOVE)
FamilyVIII.place(x=380,y=280)

#一周
#氢
FH1 = Label(window, text = '1   H',font=('微软雅黑',10))
FH1.place(x=10,y=60)
Y1 = Label(window, text = '氢',font=('微软雅黑',20))
Y1.place(x=10,y=80)
XS1 = Label(window, text = '1.008',font=('微软雅黑',10))
XS1.place(x=10,y=120)
#氦
FH2 = Label(window, text = '2  He',font=('微软雅黑',10))
FH2.place(x=880,y=60)
Y2 = Label(window, text = '氦',font=('微软雅黑',20))
Y2.place(x=880,y=80)
XS2 = Label(window, text = '4.003',font=('微软雅黑',10))
XS2.place(x=880,y=120)
#二周
#锂
FH3 = Label(window, text = '3  Li',font=('微软雅黑',10))
FH3.place(x=10,y=140)
Y3 = Label(window, text = '锂',font=('微软雅黑',20))
Y3.place(x=10,y=160)
XS3 = Label(window, text = '6.941',font=('微软雅黑',10))
XS3.place(x=10,y=200)
#铍
FH4 = Label(window, text = '4  Be',font=('微软雅黑',10))
FH4.place(x=60,y=140)
Y4 = Label(window, text = '铍',font=('微软雅黑',20))
Y4.place(x=60,y=160)
XS4 = Label(window, text = '9.012',font=('微软雅黑',10))
XS4.place(x=60,y=200)
#硼
FH5 = Label(window, text = '5   B',font=('微软雅黑',10))
FH5.place(x=630,y=140)
Y5 = Label(window, text = '硼',font=('微软雅黑',20))
Y5.place(x=630,y=160)
XS5 = Label(window, text = '10.811',font=('微软雅黑',10))
XS5.place(x=630,y=200)
#碳
FH6 = Label(window, text = '6   C',font=('微软雅黑',10))
FH6.place(x=680,y=140)
Y6 = Label(window, text = '碳',font=('微软雅黑',20))
Y6.place(x=680,y=160)
XS6 = Label(window, text = '12.011',font=('微软雅黑',10))
XS6.place(x=680,y=200)
#氮
FH7 = Label(window, text = '7   N',font=('微软雅黑',10))
FH7.place(x=730,y=140)
Y7 = Label(window, text = '氮',font=('微软雅黑',20))
Y7.place(x=730,y=160)
XS7 = Label(window, text = '14.007',font=('微软雅黑',10))
XS7.place(x=730,y=200)
#氧
FH8 = Label(window, text = '8   O',font=('微软雅黑',10))
FH8.place(x=780,y=140)
Y8 = Label(window, text = '氧',font=('微软雅黑',20))
Y8.place(x=780,y=160)
XS8 = Label(window, text = '15.999',font=('微软雅黑',10))
XS8.place(x=780,y=200)
#氟
FH9 = Label(window, text = '9   F',font=('微软雅黑',10))
FH9.place(x=830,y=140)
Y9 = Label(window, text = '氟',font=('微软雅黑',20))
Y9.place(x=830,y=160)
XS9 = Label(window, text = '18.998',font=('微软雅黑',10))
XS9.place(x=830,y=200)
#氖
FH10 = Label(window, text = '10 Ne',font=('微软雅黑',10))
FH10.place(x=880,y=140)
Y10 = Label(window, text = '氖',font=('微软雅黑',20))
Y10.place(x=880,y=160)
XS10 = Label(window, text = '20.180',font=('微软雅黑',10))
XS10.place(x=880,y=200)
#三周
#钠
FH11 = Label(window, text = '11 Na',font=('微软雅黑',10))
FH11.place(x=10,y=220)
Y11 = Label(window, text = '钠',font=('微软雅黑',20))
Y11.place(x=10,y=240)
XS11 = Label(window, text = '22.990',font=('微软雅黑',10))
XS11.place(x=10,y=280)
#镁
FH12 = Label(window, text = '12 Mg',font=('微软雅黑',10))
FH12.place(x=60,y=220)
Y12 = Label(window, text = '镁',font=('微软雅黑',20))
Y12.place(x=60,y=240)
XS12 = Label(window, text = '24.305',font=('微软雅黑',10))
XS12.place(x=60,y=280)
#铝
FH13 = Label(window, text = '13 Al',font=('微软雅黑',10))
FH13.place(x=630,y=220)
Y13 = Label(window, text = '铝',font=('微软雅黑',20))
Y13.place(x=630,y=240)
XS13 = Label(window, text = '26.982',font=('微软雅黑',10))
XS13.place(x=630,y=280)
#硅
FH14 = Label(window, text = '14 Si',font=('微软雅黑',10))
FH14.place(x=680,y=220)
Y14 = Label(window, text = '硅',font=('微软雅黑',20))
Y14.place(x=680,y=240)
XS14 = Label(window, text = '28.086',font=('微软雅黑',10))
XS14.place(x=680,y=280)
#磷
FH15 = Label(window, text = '15  P',font=('微软雅黑',10))
FH15.place(x=730,y=220)
Y15 = Label(window, text = '磷',font=('微软雅黑',20))
Y15.place(x=730,y=240)
XS15 = Label(window, text = '30.973',font=('微软雅黑',10))
XS15.place(x=730,y=280)
#硫
FH16 = Label(window, text = '16  S',font=('微软雅黑',10))
FH16.place(x=780,y=220)
Y16 = Label(window, text = '硫',font=('微软雅黑',20))
Y16.place(x=780,y=240)
XS16 = Label(window, text = '32.065',font=('微软雅黑',10))
XS16.place(x=780,y=280)
#氯
FH17 = Label(window, text = '17 Cl',font=('微软雅黑',10))
FH17.place(x=830,y=220)
Y17 = Label(window, text = '氯',font=('微软雅黑',20))
Y17.place(x=830,y=240)
XS17 = Label(window, text = '35.453',font=('微软雅黑',10))
XS17.place(x=830,y=280)
#氩
FH18 = Label(window, text = '18 Ar',font=('微软雅黑',10))
FH18.place(x=880,y=220)
Y18 = Label(window, text = '氩',font=('微软雅黑',20))
Y18.place(x=880,y=240)
XS18 = Label(window, text = '39.948',font=('微软雅黑',10))
XS18.place(x=880,y=280)
#四周
#钾
FH19 = Label(window, text = '19  K',font=('微软雅黑',10))
FH19.place(x=10,y=300)
Y19 = Label(window, text = '钾',font=('微软雅黑',20))
Y19.place(x=10,y=320)
XS19 = Label(window, text = '39.098',font=('微软雅黑',10))
XS19.place(x=10,y=360)
#钙
FH20 = Label(window, text = '20  Ca',font=('微软雅黑',10))
FH20.place(x=60,y=300)
Y20 = Label(window, text = '钙',font=('微软雅黑',20))
Y20.place(x=60,y=320)
XS20 = Label(window, text = '40.078',font=('微软雅黑',10))
XS20.place(x=60,y=360)
#钪
FH21 = Label(window, text = '21 Sc',font=('微软雅黑',10))
FH21.place(x=110,y=300)
Y21 = Label(window, text = '钪',font=('微软雅黑',20))
Y21.place(x=110,y=320)
XS21 = Label(window, text = '44.956',font=('微软雅黑',10))
XS21.place(x=110,y=360)
#钛
FH22 = Label(window, text = '22 Ti',font=('微软雅黑',10))
FH22.place(x=170,y=300)
Y22 = Label(window, text = '钛',font=('微软雅黑',20))
Y22.place(x=170,y=320)
XS22 = Label(window, text = '47.867',font=('微软雅黑',10))
XS22.place(x=170,y=360)
#钒
FH23 = Label(window, text = '23  V',font=('微软雅黑',10))
FH23.place(x=230,y=300)
Y23 = Label(window, text = '钒',font=('微软雅黑',20))
Y23.place(x=230,y=320)
XS23 = Label(window, text = '50.941',font=('微软雅黑',10))
XS23.place(x=230,y=360)
#铬
FH24 = Label(window, text = '24 Cr',font=('微软雅黑',10))
FH24.place(x=280,y=300)
Y24 = Label(window, text = '铬',font=('微软雅黑',20))
Y24.place(x=280,y=320)
XS24 = Label(window, text = '51.996',font=('微软雅黑',10))
XS24.place(x=280,y=360)
#锰
FH25 = Label(window, text = '25 Mn',font=('微软雅黑',10))
FH25.place(x=330,y=300)
Y25 = Label(window, text = '锰',font=('微软雅黑',20))
Y25.place(x=330,y=320)
XS25 = Label(window, text = '54.940',font=('微软雅黑',10))
XS25.place(x=330,y=360)
#铁
FH26 = Label(window, text = '26 Fe',font=('微软雅黑',10))
FH26.place(x=380,y=300)
Y26 = Label(window, text = '铁',font=('微软雅黑',20))
Y26.place(x=380,y=320)
XS26 = Label(window, text = '55.945',font=('微软雅黑',10))
XS26.place(x=380,y=360)
#钴
FH27 = Label(window, text = '27 Co',font=('微软雅黑',10))
FH27.place(x=430,y=300)
Y27 = Label(window, text = '钴',font=('微软雅黑',20))
Y27.place(x=430,y=320)
XS27 = Label(window, text = '58.993',font=('微软雅黑',10))
XS27.place(x=430,y=360)
#镍
FH28 = Label(window, text = '28 Ni',font=('微软雅黑',10))
FH28.place(x=480,y=300)
Y28 = Label(window, text = '镍',font=('微软雅黑',20))
Y28.place(x=480,y=320)
XS28 = Label(window, text = '58.693',font=('微软雅黑',10))
XS28.place(x=480,y=360)
#铜
FH29 = Label(window, text = '29 Cu',font=('微软雅黑',10))
FH29.place(x=530,y=300)
Y29 = Label(window, text = '铜',font=('微软雅黑',20))
Y29.place(x=530,y=320)
XS29 = Label(window, text = '63.546',font=('微软雅黑',10))
XS29.place(x=530,y=360)
#锌
FH30 = Label(window, text = '30 Zn',font=('微软雅黑',10))
FH30.place(x=580,y=300)
Y30 = Label(window, text = '锌',font=('微软雅黑',20))
Y30.place(x=580,y=320)
XS30 = Label(window, text = '65.39',font=('微软雅黑',10))
XS30.place(x=580,y=360)
#镓
FH31 = Label(window, text = '31 Ga',font=('微软雅黑',10))
FH31.place(x=630,y=300)
Y31 = Label(window, text = '镓',font=('微软雅黑',20))
Y31.place(x=630,y=320)
XS31 = Label(window, text = '69.723',font=('微软雅黑',10))
XS31.place(x=630,y=360)
#锗
FH32 = Label(window, text = '32 Ge',font=('微软雅黑',10))
FH32.place(x=680,y=300)
Y32 = Label(window, text = '锗',font=('微软雅黑',20))
Y32.place(x=680,y=320)
XS32 = Label(window, text = '72.64',font=('微软雅黑',10))
XS32.place(x=680,y=360)
#砷
FH33 = Label(window, text = '33 As',font=('微软雅黑',10))
FH33.place(x=730,y=300)
Y33 = Label(window, text = '砷',font=('微软雅黑',20))
Y33.place(x=730,y=320)
XS33 = Label(window, text = '74.922',font=('微软雅黑',10))
XS33.place(x=730,y=360)
#硒
FH34 = Label(window, text = '34 Se',font=('微软雅黑',10))
FH34.place(x=780,y=300)
Y34 = Label(window, text = '硒',font=('微软雅黑',20))
Y34.place(x=780,y=320)
XS34 = Label(window, text = '78.96',font=('微软雅黑',10))
XS34.place(x=780,y=360)
#㴪
FH35 = Label(window, text = '35 Br',font=('微软雅黑',10))
FH35.place(x=830,y=300)
Y35 = Label(window, text = '㴪',font=('微软雅黑',20))
Y35.place(x=830,y=320)
XS35 = Label(window, text = '79.90',font=('微软雅黑',10))
XS35.place(x=830,y=360)
#氪
FH36 = Label(window, text = '36 Kr',font=('微软雅黑',10))
FH36.place(x=880,y=300)
Y36 = Label(window, text = '氪',font=('微软雅黑',20))
Y36.place(x=880,y=320)
XS36 = Label(window, text = '83.80',font=('微软雅黑',10))
XS36.place(x=880,y=360)
#五周
#铷
FH37 = Label(window, text = '37 Rb',font=('微软雅黑',10))
FH37.place(x=10,y=380)
Y37 = Label(window, text = '铷',font=('微软雅黑',20))
Y37.place(x=10,y=400)
XS37 = Label(window, text = '85.469',font=('微软雅黑',10))
XS37.place(x=10,y=440)
#锶
FH38 = Label(window, text = '38 Sr',font=('微软雅黑',10))
FH38.place(x=60,y=380)
Y38 = Label(window, text = '锶',font=('微软雅黑',20))
Y38.place(x=60,y=400)
XS38 = Label(window, text = '87.62',font=('微软雅黑',10))
XS38.place(x=60,y=440)
#钇
FH39 = Label(window, text = '39  Y',font=('微软雅黑',10))
FH39.place(x=110,y=380)
Y39 = Label(window, text = '钇',font=('微软雅黑',20))
Y39.place(x=110,y=400)
XS39 = Label(window, text = '88.906',font=('微软雅黑',10))
XS39.place(x=110,y=440)
#锆
FH40 = Label(window, text = '40 Zr',font=('微软雅黑',10))
FH40.place(x=170,y=380)
Y40 = Label(window, text = '锆',font=('微软雅黑',20))
Y40.place(x=170,y=400)
XS40 = Label(window, text = '91.224',font=('微软雅黑',10))
XS40.place(x=170,y=440)
#铌
FH41 = Label(window, text = '41 Nb',font=('微软雅黑',10))
FH41.place(x=230,y=380)
Y41 = Label(window, text = '铌',font=('微软雅黑',20))
Y41.place(x=230,y=400)
XS41 = Label(window, text = '92.906',font=('微软雅黑',10))
XS41.place(x=230,y=440)
#钼
FH42 = Label(window, text = '42 Mo',font=('微软雅黑',10))
FH42.place(x=280,y=380)
Y42 = Label(window, text = '钼',font=('微软雅黑',20))
Y42.place(x=280,y=400)
XS42 = Label(window, text = '95.94',font=('微软雅黑',10))
XS42.place(x=280,y=440)
#锝
FH43 = Label(window, text = '43 Tc',font=('微软雅黑',10))
FH43.place(x=330,y=380)
Y43 = Label(window, text = '锝',font=('微软雅黑',20))
Y43.place(x=330,y=400)
XS43 = Label(window, text = '98.906',font=('微软雅黑',10))
XS43.place(x=330,y=440)
#钌
FH44 = Label(window, text = '44 Ru',font=('微软雅黑',10))
FH44.place(x=380,y=380)
Y44 = Label(window, text = '钌',font=('微软雅黑',20))
Y44.place(x=380,y=400)
XS44 = Label(window, text = '101.07',font=('微软雅黑',10))
XS44.place(x=380,y=440)
#铑
FH45 = Label(window, text = '45 Rh',font=('微软雅黑',10))
FH45.place(x=430,y=380)
Y45 = Label(window, text = '铑',font=('微软雅黑',20))
Y45.place(x=430,y=400)
XS45 = Label(window, text = '102.91',font=('微软雅黑',10))
XS45.place(x=430,y=440)
#钯
FH46 = Label(window, text = '46 Pd',font=('微软雅黑',10))
FH46.place(x=480,y=380)
Y46 = Label(window, text = '钯',font=('微软雅黑',20))
Y46.place(x=480,y=400)
XS46 = Label(window, text = '106.42',font=('微软雅黑',10))
XS46.place(x=480,y=440)
#银
FH47 = Label(window, text = '47 Ag',font=('微软雅黑',10))
FH47.place(x=530,y=380)
Y47 = Label(window, text = '银',font=('微软雅黑',20))
Y47.place(x=530,y=400)
XS47 = Label(window, text = '107.868',font=('微软雅黑',10))
XS47.place(x=530,y=440)
#镉
FH48 = Label(window, text = '48 Cd',font=('微软雅黑',10))
FH48.place(x=580,y=380)
Y48 = Label(window, text = '镉',font=('微软雅黑',20))
Y48.place(x=580,y=400)
XS48 = Label(window, text = '112.411',font=('微软雅黑',10))
XS48.place(x=580,y=440)
#铟
FH49 = Label(window, text = '49 ln',font=('微软雅黑',10))
FH49.place(x=630,y=380)
Y49 = Label(window, text = '铟',font=('微软雅黑',20))
Y49.place(x=630,y=400)
XS49 = Label(window, text = '114.8',font=('微软雅黑',10))
XS49.place(x=630,y=440)
#锡
FH50 = Label(window, text = '50 Sn',font=('微软雅黑',10))
FH50.place(x=680,y=380)
Y50 = Label(window, text = '锡',font=('微软雅黑',20))
Y50.place(x=680,y=400)
XS50 = Label(window, text = '118.7',font=('微软雅黑',10))
XS50.place(x=680,y=440)
#锑
FH51 = Label(window, text = '51 Sb',font=('微软雅黑',10))
FH51.place(x=730,y=380)
Y51 = Label(window, text = '锑',font=('微软雅黑',20))
Y51.place(x=730,y=400)
XS51 = Label(window, text = '121.8',font=('微软雅黑',10))
XS51.place(x=730,y=440)
#碲
FH52 = Label(window, text = '52 Te',font=('微软雅黑',10))
FH52.place(x=780,y=380)
Y52 = Label(window, text = '碲',font=('微软雅黑',20))
Y52.place(x=780,y=400)
XS52 = Label(window, text = '127.6',font=('微软雅黑',10))
XS52.place(x=780,y=440)
#碘
FH53 = Label(window, text = '53  l',font=('微软雅黑',10))
FH53.place(x=830,y=380)
Y53 = Label(window, text = '碘',font=('微软雅黑',20))
Y53.place(x=830,y=400)
XS53 = Label(window, text = '126.9',font=('微软雅黑',10))
XS53.place(x=830,y=440)
#氙
FH54 = Label(window, text = '54 Xe',font=('微软雅黑',10))
FH54.place(x=880,y=380)
Y54 = Label(window, text = '氙',font=('微软雅黑',20))
Y54.place(x=880,y=400)
XS54 = Label(window, text = '131.3',font=('微软雅黑',10))
XS54.place(x=880,y=440)
#六周壹
#铯
FH55 = Label(window, text = '55 Cs',font=('微软雅黑',10))
FH55.place(x=10,y=460)
Y55 = Label(window, text = '铯',font=('微软雅黑',20))
Y55.place(x=10,y=480)
XS55 = Label(window, text = '132.9',font=('微软雅黑',10))
XS55.place(x=10,y=520)
#钡
FH56 = Label(window, text = '56 Ba',font=('微软雅黑',10))
FH56.place(x=60,y=460)
Y56 = Label(window, text = '钡',font=('微软雅黑',20))
Y56.place(x=60,y=480)
XS56 = Label(window, text = '137.3',font=('微软雅黑',10))
XS56.place(x=60,y=520)
#镧系
#镧系总标
LXFH1 = Label(window, text = '57~71',font=('微软雅黑',10))
LXFH1.place(x=110,y=460)
LXY1 = Label(window, text = 'La~Lu',font=('微软雅黑',13))
LXY1.place(x=110,y=490)
LXXS1 = Label(window, text = '  镧系',font=('微软雅黑',10))
LXXS1.place(x=110,y=520)
#镧系标
LXB = Label(window, text = '镧\n系',font=('微软雅黑',15))
LXB.place(x=85,y=690)
#镧
FH57 = Label(window, text = '57 La',font=('微软雅黑',10))
FH57.place(x=110,y=680)
Y57 = Label(window, text = '镧',font=('微软雅黑',20))
Y57.place(x=110,y=700)
XS57 = Label(window, text = '138.9',font=('微软雅黑',10))
XS57.place(x=110,y=740)
#铈
FH58 = Label(window, text = '58 Ce',font=('微软雅黑',10))
FH58.place(x=170,y=680)
Y58 = Label(window, text = '铈',font=('微软雅黑',20))
Y58.place(x=170,y=700)
XS58 = Label(window, text = '140.1',font=('微软雅黑',10))
XS58.place(x=170,y=740)
#镨
FH59 = Label(window, text = '59 Pr',font=('微软雅黑',10))
FH59.place(x=230,y=680)
Y59 = Label(window, text = '镨',font=('微软雅黑',20))
Y59.place(x=230,y=700)
XS59 = Label(window, text = '140.9',font=('微软雅黑',10))
XS59.place(x=230,y=740)
#钕
FH60 = Label(window, text = '60 Nd',font=('微软雅黑',10))
FH60.place(x=280,y=680)
Y60 = Label(window, text = '钕',font=('微软雅黑',20))
Y60.place(x=280,y=700)
XS60 = Label(window, text = '144.2',font=('微软雅黑',10))
XS60.place(x=280,y=740)
#钷
FH61 = Label(window, text = '61 Pm',font=('微软雅黑',10))
FH61.place(x=330,y=680)
Y61 = Label(window, text = '钷',font=('微软雅黑',20))
Y61.place(x=330,y=700)
XS61 = Label(window, text = '(145)',font=('微软雅黑',10))
XS61.place(x=330,y=740)
#钐
FH62 = Label(window, text = '62 Sm',font=('微软雅黑',10))
FH62.place(x=380,y=680)
Y62 = Label(window, text = '钐',font=('微软雅黑',20))
Y62.place(x=380,y=700)
XS62 = Label(window, text = '150.4',font=('微软雅黑',10))
XS62.place(x=380,y=740)
#铕
FH63 = Label(window, text = '63 Eu',font=('微软雅黑',10))
FH63.place(x=430,y=680)
Y63 = Label(window, text = '铕',font=('微软雅黑',20))
Y63.place(x=430,y=700)
XS63 = Label(window, text = '152.0',font=('微软雅黑',10))
XS63.place(x=430,y=740)
#钆
FH64 = Label(window, text = '64 Cd',font=('微软雅黑',10))
FH64.place(x=480,y=680)
Y64 = Label(window, text = '钆',font=('微软雅黑',20))
Y64.place(x=480,y=700)
XS64 = Label(window, text = '112.411',font=('微软雅黑',10))
XS64.place(x=480,y=740)
#铽
FH65 = Label(window, text = '65 ln',font=('微软雅黑',10))
FH65.place(x=530,y=680)
Y65 = Label(window, text = '铽',font=('微软雅黑',20))
Y65.place(x=530,y=700)
XS65 = Label(window, text = '158.9',font=('微软雅黑',10))
XS65.place(x=530,y=740)
#镝
FH66 = Label(window, text = '66 Dy',font=('微软雅黑',10))
FH66.place(x=580,y=680)
Y66 = Label(window, text = '镝',font=('微软雅黑',20))
Y66.place(x=580,y=700)
XS66 = Label(window, text = '162.5',font=('微软雅黑',10))
XS66.place(x=580,y=740)
#钬
FH67 = Label(window, text = '67 Ho',font=('微软雅黑',10))
FH67.place(x=630,y=680)
Y67 = Label(window, text = '钬',font=('微软雅黑',20))
Y67.place(x=630,y=700)
XS67 = Label(window, text = '164.9',font=('微软雅黑',10))
XS67.place(x=630,y=740)
#铒
FH68 = Label(window, text = '68 Er',font=('微软雅黑',10))
FH68.place(x=680,y=680)
Y68 = Label(window, text = '铒',font=('微软雅黑',20))
Y68.place(x=680,y=700)
XS68 = Label(window, text = '167.3',font=('微软雅黑',10))
XS68.place(x=680,y=740)
#铥
FH69 = Label(window, text = '69 Tm',font=('微软雅黑',10))
FH69.place(x=730,y=680)
Y69 = Label(window, text = '铥',font=('微软雅黑',20))
Y69.place(x=730,y=700)
XS69 = Label(window, text = '168.9',font=('微软雅黑',10))
XS69.place(x=730,y=740)
#镱
FH70 = Label(window, text = '70 Xe',font=('微软雅黑',10))
FH70.place(x=780,y=680)
Y70 = Label(window, text = '镱',font=('微软雅黑',20))
Y70.place(x=780,y=700)
XS70 = Label(window, text = '173.0',font=('微软雅黑',10))
XS70.place(x=780,y=740)
#镥
FH71 = Label(window, text = '71 Xe',font=('微软雅黑',10))
FH71.place(x=830,y=680)
Y71 = Label(window, text = '镥',font=('微软雅黑',20))
Y71.place(x=830,y=700)
XS71 = Label(window, text = '175.0',font=('微软雅黑',10))
XS71.place(x=830,y=740)
#六周贰
#铪
FH72 = Label(window, text = '72 Hf',font=('微软雅黑',10))
FH72.place(x=170,y=460)
Y72 = Label(window, text = '铪',font=('微软雅黑',20))
Y72.place(x=170,y=480)
XS72 = Label(window, text = '178.5',font=('微软雅黑',10))
XS72.place(x=170,y=520)
#钽
FH73 = Label(window, text = '73 Ta',font=('微软雅黑',10))
FH73.place(x=230,y=460)
Y73 = Label(window, text = '钽',font=('微软雅黑',20))
Y73.place(x=230,y=480)
XS73 = Label(window, text = '180.9',font=('微软雅黑',10))
XS73.place(x=230,y=520)
#钨
FH74 = Label(window, text = '74  W',font=('微软雅黑',10))
FH74.place(x=280,y=460)
Y74 = Label(window, text = '钨',font=('微软雅黑',20))
Y74.place(x=280,y=480)
XS74 = Label(window, text = '183.8',font=('微软雅黑',10))
XS74.place(x=280,y=520)
#铼
FH75 = Label(window, text = '75 Re',font=('微软雅黑',10))
FH75.place(x=330,y=460)
Y75 = Label(window, text = '铼',font=('微软雅黑',20))
Y75.place(x=330,y=480)
XS75 = Label(window, text = '186.2',font=('微软雅黑',10))
XS75.place(x=330,y=520)
#锇
FH76 = Label(window, text = '76 Os',font=('微软雅黑',10))
FH76.place(x=380,y=460)
Y76 = Label(window, text = '锇',font=('微软雅黑',20))
Y76.place(x=380,y=480)
XS76 = Label(window, text = '190.2',font=('微软雅黑',10))
XS76.place(x=380,y=520)
#铱
FH77 = Label(window, text = '77 lr',font=('微软雅黑',10))
FH77.place(x=430,y=460)
Y77 = Label(window, text = '铱',font=('微软雅黑',20))
Y77.place(x=430,y=480)
XS77 = Label(window, text = '192.2',font=('微软雅黑',10))
XS77.place(x=430,y=520)
#铂
FH78 = Label(window, text = '78 Pt',font=('微软雅黑',10))
FH78.place(x=480,y=460)
Y78 = Label(window, text = '铂',font=('微软雅黑',20))
Y78.place(x=480,y=480)
XS78 = Label(window, text = '195.1',font=('微软雅黑',10))
XS78.place(x=480,y=520)
#金
FH79 = Label(window, text = '79 Au',font=('微软雅黑',10))
FH79.place(x=530,y=460)
Y79 = Label(window, text = '金',font=('微软雅黑',20))
Y79.place(x=530,y=480)
XS79 = Label(window, text = '197.0',font=('微软雅黑',10))
XS79.place(x=530,y=520)
#汞
FH80 = Label(window, text = '80 Hg',font=('微软雅黑',10))
FH80.place(x=580,y=460)
Y80 = Label(window, text = '汞',font=('微软雅黑',20))
Y80.place(x=580,y=480)
XS80 = Label(window, text = '200.6',font=('微软雅黑',10))
XS80.place(x=580,y=520)
#铊
FH81 = Label(window, text = '81 Hg',font=('微软雅黑',10))
FH81.place(x=630,y=460)
Y81 = Label(window, text = '铊',font=('微软雅黑',20))
Y81.place(x=630,y=480)
XS81 = Label(window, text = '204.4',font=('微软雅黑',10))
XS81.place(x=630,y=520)
#铅
FH82 = Label(window, text = '82 Pb',font=('微软雅黑',10))
FH82.place(x=680,y=460)
Y82 = Label(window, text = '铅',font=('微软雅黑',20))
Y82.place(x=680,y=480)
XS82 = Label(window, text = '207.2',font=('微软雅黑',10))
XS82.place(x=680,y=520)
#铋
FH83 = Label(window, text = '83 Bi',font=('微软雅黑',10))
FH83.place(x=730,y=460)
Y83 = Label(window, text = '铋',font=('微软雅黑',20))
Y83.place(x=730,y=480)
XS83 = Label(window, text = '209.0',font=('微软雅黑',10))
XS83.place(x=730,y=520)
#钋
FH84 = Label(window, text = '84 Pb',font=('微软雅黑',10))
FH84.place(x=780,y=460)
Y84 = Label(window, text = '钋',font=('微软雅黑',20))
Y84.place(x=780,y=480)
XS84 = Label(window, text = '(209)',font=('微软雅黑',10))
XS84.place(x=780,y=520)
#砹
FH85 = Label(window, text = '85 At',font=('微软雅黑',10))
FH85.place(x=830,y=460)
Y85 = Label(window, text = '砹',font=('微软雅黑',20))
Y85.place(x=830,y=480)
XS85 = Label(window, text = '(210)',font=('微软雅黑',10))
XS85.place(x=830,y=520)
#氡
FH86 = Label(window, text = '86 Rn',font=('微软雅黑',10))
FH86.place(x=880,y=460)
Y86 = Label(window, text = '氡',font=('微软雅黑',20))
Y86.place(x=880,y=480)
XS86 = Label(window, text = '(220)',font=('微软雅黑',10))
XS86.place(x=880,y=520)
#七周壹
#钫
FH87 = Label(window, text = '87 Fr',font=('微软雅黑',10))
FH87.place(x=10,y=540)
Y87 = Label(window, text = '钫',font=('微软雅黑',20))
Y87.place(x=10,y=560)
XS87 = Label(window, text = '(223)',font=('微软雅黑',10))
XS87.place(x=10,y=600)
#钡
FH88 = Label(window, text = '88 Ra',font=('微软雅黑',10))
FH88.place(x=60,y=540)
Y88 = Label(window, text = '镭',font=('微软雅黑',20))
Y88.place(x=60,y=560)
XS88 = Label(window, text = '(226)',font=('微软雅黑',10))
XS88.place(x=60,y=600)
#锕系
#锕系总标
AXFH1 = Label(window, text = '89~103',font=('微软雅黑',10))
AXFH1.place(x=110,y=540)
AXY1 = Label(window, text = 'Ac~Lr',font=('微软雅黑',13))
AXY1.place(x=110,y=570)
AXXS1 = Label(window, text = '  锕系',font=('微软雅黑',10))
AXXS1.place(x=110,y=600)
#锕系标
AXB = Label(window, text = '锕\n系',font=('微软雅黑',15))
AXB.place(x=85,y=760)
#锕
FH89 = Label(window, text = '89 Ac',font=('微软雅黑',10))
FH89.place(x=110,y=760)
Y89 = Label(window, text = '锕',font=('微软雅黑',20))
Y89.place(x=110,y=780)
XS89 = Label(window, text = '(227)',font=('微软雅黑',10))
XS89.place(x=110,y=820)
#钍
FH90 = Label(window, text = '90 Th',font=('微软雅黑',10))
FH90.place(x=170,y=760)
Y90 = Label(window, text = '钍',font=('微软雅黑',20))
Y90.place(x=170,y=780)
XS90 = Label(window, text = '232.0',font=('微软雅黑',10))
XS90.place(x=170,y=820)
#镤
FH91 = Label(window, text = '91 Pa',font=('微软雅黑',10))
FH91.place(x=230,y=760)
Y91 = Label(window, text = '镤',font=('微软雅黑',20))
Y91.place(x=230,y=780)
XS91 = Label(window, text = '231.0',font=('微软雅黑',10))
XS91.place(x=230,y=820)
#铀
FH92 = Label(window, text = '92  U',font=('微软雅黑',10))
FH92.place(x=280,y=760)
Y92 = Label(window, text = '铀',font=('微软雅黑',20))
Y92.place(x=280,y=780)
XS92 = Label(window, text = '238.0',font=('微软雅黑',10))
XS92.place(x=280,y=820)
#镎
FH93 = Label(window, text = '93 Np',font=('微软雅黑',10))
FH93.place(x=330,y=760)
Y93 = Label(window, text = '镎',font=('微软雅黑',20))
Y93.place(x=330,y=780)
XS93 = Label(window, text = '(237)',font=('微软雅黑',10))
XS93.place(x=330,y=820)
#钚
FH94 = Label(window, text = '94 Pu',font=('微软雅黑',10))
FH94.place(x=380,y=760)
Y94 = Label(window, text = '钚',font=('微软雅黑',20))
Y94.place(x=380,y=780)
XS94 = Label(window, text = '(244)',font=('微软雅黑',10))
XS94.place(x=380,y=820)
#镅
FH95= Label(window, text =  'Am',font=('微软雅黑',10))
FH95.place(x=430,y=760)
Y95= Label(window, text = '镅',font=('微软雅黑',20))
Y95.place(x=430,y=780)
XS95= Label(window, text = '(243)',font=('微软雅黑',10))
XS95.place(x=430,y=820)
#锔
FH96 = Label(window, text = '96 Am',font=('微软雅黑',10))
FH96.place(x=480,y=760)
Y96 = Label(window, text = '锔',font=('微软雅黑',20))
Y96.place(x=480,y=780)
XS96 = Label(window, text = '(247)',font=('微软雅黑',10))
XS96.place(x=480,y=820)
#锫
FH97 = Label(window, text = '97 Bk',font=('微软雅黑',10))
FH97.place(x=530,y=760)
Y97 = Label(window, text = '锫',font=('微软雅黑',20))
Y97.place(x=530,y=780)
XS97 = Label(window, text = '(247)',font=('微软雅黑',10))
XS97.place(x=530,y=820)
#锎
FH98 = Label(window, text = '98 Cf',font=('微软雅黑',10))
FH98.place(x=580,y=760)
Y98 = Label(window, text = '锎',font=('微软雅黑',20))
Y98.place(x=580,y=780)
XS98 = Label(window, text = '(251)',font=('微软雅黑',10))
XS98.place(x=580,y=820)
#锿
FH99 = Label(window, text = '99 Es',font=('微软雅黑',10))
FH99.place(x=630,y=760)
Y99 = Label(window, text = '锿',font=('微软雅黑',20))
Y99.place(x=630,y=780)
XS99 = Label(window, text = '(252)',font=('微软雅黑',10))
XS99.place(x=630,y=820)
#镄
FH100 = Label(window, text = '100 Fm',font=('微软雅黑',10))
FH100.place(x=680,y=760)
Y100 = Label(window, text = '镄',font=('微软雅黑',20))
Y100.place(x=680,y=780)
XS100 = Label(window, text = '(257)',font=('微软雅黑',10))
XS100.place(x=680,y=820)
#钔
FH101 = Label(window, text = '101 Md',font=('微软雅黑',10))
FH101.place(x=730,y=760)
Y101 = Label(window, text = '钔',font=('微软雅黑',20))
Y101.place(x=730,y=780)
XS101 = Label(window, text = '(258)',font=('微软雅黑',10))
XS101.place(x=730,y=820)
#锘
FH102 = Label(window, text = '102 No',font=('微软雅黑',10))
FH102.place(x=780,y=760)
Y102 = Label(window, text = '锘',font=('微软雅黑',20))
Y102.place(x=780,y=780)
XS102 = Label(window, text = '(259)',font=('微软雅黑',10))
XS102.place(x=780,y=820)
#铹
FH103 = Label(window, text = '103 Lr',font=('微软雅黑',10))
FH103.place(x=830,y=760)
Y103 = Label(window, text = '铹',font=('微软雅黑',20))
Y103.place(x=830,y=780)
XS103 = Label(window, text = '(266)',font=('微软雅黑',10))
XS103.place(x=830,y=820)
#七周贰 540 560 600
#钅卢
FH104 = Label(window, text = '104 Rf',font=('微软雅黑',10))
FH104.place(x=170,y=540)
Y104 = Label(window, text = '钅卢',font=('微软雅黑',15))
Y104.place(x=170,y=560)
XS104 = Label(window, text = '(267)',font=('微软雅黑',10))
XS104.place(x=170,y=600)
#钅杜
FH105 = Label(window, text = '105 Db',font=('微软雅黑',10))
FH105.place(x=230,y=540)
Y105 = Label(window, text = '钅杜',font=('微软雅黑',15))
Y105.place(x=230,y=560)
XS105 = Label(window, text = '(268)',font=('微软雅黑',10))
XS105.place(x=230,y=600)
#钅喜
FH106 = Label(window, text = '106 Sg',font=('微软雅黑',10))
FH106.place(x=280,y=540)
Y106 = Label(window, text = '钅喜',font=('微软雅黑',15))
Y106.place(x=280,y=560)
XS106 = Label(window, text = '(269)',font=('微软雅黑',10))
XS106.place(x=280,y=600)
#钅波
FH107 = Label(window, text = '107 Bh',font=('微软雅黑',10))
FH107.place(x=330,y=540)
Y107 = Label(window, text = '钅波',font=('微软雅黑',15))
Y107.place(x=330,y=560)
XS107 = Label(window, text = '(270)',font=('微软雅黑',10))
XS107.place(x=330,y=600)
#钅黑
FH108 = Label(window, text = '108 Hs',font=('微软雅黑',10))
FH108.place(x=380,y=540)
Y108 = Label(window, text = '钅黑',font=('微软雅黑',15))
Y108.place(x=380,y=560)
XS108 = Label(window, text = '(269)',font=('微软雅黑',10))
XS108.place(x=380,y=600)
#钅麦
FH109 = Label(window, text = '109 Mt',font=('微软雅黑',10))
FH109.place(x=430,y=540)
Y109 = Label(window, text = '钅麦',font=('微软雅黑',15))
Y109.place(x=430,y=560)
XS109 = Label(window, text = '(278)',font=('微软雅黑',10))
XS109.place(x=430,y=600)
#钅达
FH110 = Label(window, text = '110 Ds',font=('微软雅黑',10))
FH110.place(x=480,y=540)
Y110 = Label(window, text = '钅达',font=('微软雅黑',15))
Y110.place(x=480,y=560)
XS110 = Label(window, text = '(281)',font=('微软雅黑',10))
XS110.place(x=480,y=600)
#钅仑
FH111 = Label(window, text = '111 Rg',font=('微软雅黑',10))
FH111.place(x=530,y=540)
Y111 = Label(window, text = '钅仑',font=('微软雅黑',15))
Y111.place(x=530,y=560)
XS111 = Label(window, text = '(282)',font=('微软雅黑',10))
XS111.place(x=530,y=600)
#钅哥
FH112 = Label(window, text = '112 Cn',font=('微软雅黑',10))
FH112.place(x=580,y=540)
Y112 = Label(window, text = '钅哥',font=('微软雅黑',15))
Y112.place(x=580,y=560)
XS112 = Label(window, text = '(285)',font=('微软雅黑',10))
XS112.place(x=580,y=600)
#钅尔
FH113 = Label(window, text = '113 Nh',font=('微软雅黑',10))
FH113.place(x=630,y=540)
Y113 = Label(window, text = '钅尔',font=('微软雅黑',15))
Y113.place(x=630,y=560)
XS113 = Label(window, text = '(286)',font=('微软雅黑',10))
XS113.place(x=630,y=600)
#钅夫
FH114 = Label(window, text = '114 Fl',font=('微软雅黑',10))
FH114.place(x=680,y=540)
Y114 = Label(window, text = '钅夫',font=('微软雅黑',15))
Y114.place(x=680,y=560)
XS114 = Label(window, text = '(289)',font=('微软雅黑',10))
XS114.place(x=680,y=600)
#钅莫
FH115 = Label(window, text = '115 Mc',font=('微软雅黑',10))
FH115.place(x=730,y=540)
Y115 = Label(window, text = '钅莫',font=('微软雅黑',15))
Y115.place(x=730,y=560)
XS115 = Label(window, text = '(289)',font=('微软雅黑',10))
XS115.place(x=730,y=600)
#钅立
FH116 = Label(window, text = '116 Lv',font=('微软雅黑',10))
FH116.place(x=780,y=540)
Y116 = Label(window, text = '钅立',font=('微软雅黑',15))
Y116.place(x=780,y=560)
XS116 = Label(window, text = '(293)',font=('微软雅黑',10))
XS116.place(x=780,y=600)
#石田
FH117 = Label(window, text = '117 Ts',font=('微软雅黑',10))
FH117.place(x=830,y=540)
Y117 = Label(window, text = '石田',font=('微软雅黑',15))
Y117.place(x=830,y=560)
XS117 = Label(window, text = '(294)',font=('微软雅黑',10))
XS117.place(x=830,y=600)
#奥气
FH118 = Label(window, text = '118 Og',font=('微软雅黑',10))
FH118.place(x=880,y=540)
Y118_1 = Label(window, text = 'Og*',font=('微软雅黑',15))
Y118_1.place(x=885,y=560)
XS118 = Label(window, text = '(220)',font=('微软雅黑',10))
XS118.place(x=880,y=600)
#*
x = Label(window, text = '注*118号元素ao无法显示',font=('微软雅黑',10))
x.place(x=0,y=0)

L.pack()
window.mainloop()

耗时多天制作,不喜勿喷!!!🙏🙏🙏🧎‍♀️🧎‍♀️

喜欢的话,请动动您发财的小手,点个赞!🙏

  • 5
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值