父與子的編程之旅2——easygui、PyQt

一、要用EasyGui顯示一個消息框,能夠使用msgbox(),以下:函數

  easygui.msgbox("This is the answer!")ui

二、要用EasyGui獲得一個字符串輸入,要用enterbox,以下:字符串

  easygui = easygui.enterbox("What is your input?")input

  若是想要設置一個默認值,操做以下:gui

  easygui = easygui.enterbox("What is your input?", default = "something")float

三、要獲得整數輸入,能夠使用enterbox首先獲取字符串,接着把它轉換爲int。字符

  也能夠直接使用integerbox。浮點數

四、要從用戶那裏獲得浮點數,能夠使用一個enterbox,而後使用float()函數轉換。消息

相關文章
相關標籤/搜索