創新互聯www.cdcxhl.cn八線動態BGP香港云服務器提供商,新人活動買多久送多久,劃算不套路!
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業的熱愛。我們立志把好的技術通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:申請域名、虛擬空間、營銷軟件、網站建設、法庫網站維護、網站推廣。小編給大家分享一下python定義用戶輸入的方法,相信大部分人都還不怎么了解,因此分享這邊文章給大家學習,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去學習方法吧!
Python中獲取用戶輸入的方法如下:
整數輸入
#!/usr/bin/python3 usr_ip = input("Enter an integer number: ")
# 需要將輸入的字符串顯式地指定為需要的類型
usr_num = int(usr_ip) sqr_num = usr_num * usr_num print("Square of entered number is: {}".format(sqr_num))
讓我們給定一個整數和字符串來測定這個程序
Python docs - 整數文本
$ ./user_input_int.py Enter an integer number: 23 Square of entered number is: 529 $ ./user_input_int.py Enter an integer number: abc Traceback (most recent call last): File "./user_input_int.py", line 6, in <module> usr_num = int(usr_ip) ValueError: invalid literal for int() with base 10: 'abc'
浮點數輸入
#!/usr/bin/python3 usr_ip = input("Enter a floating point number: ") # 需要將輸入的字符串顯式地指定為我們需要的類型 usr_num = float(usr_ip) sqr_num = usr_num * usr_num # 限制小數點位數 print("Square of entered number is: {0:.2f}".format(sqr_num))
E 科學計數法在需要時可以使用
Python文檔 - 浮點數文本
Python文檔 - 浮點數
$ ./user_input_float.py Enter a floating point number: 3.232 Square of entered number is: 10.45 $ ./user_input_float.py Enter a floating point number: 42.7e5 Square of entered number is: 18232900000000.00 $ ./user_input_float.py Enter a floating point number: abc Traceback (most recent call last): File "./user_input_float.py", line 6, in <module> usr_num = float(usr_ip) ValueError: could not convert string to float: 'abc'
字符串輸入
#!/usr/bin/python3 usr_name = input("Hi there! What's your name? ") usr_color = input("And your favorite color is? ") print("{}, I like the {} color too".format(usr_name, usr_color))
不像Perl,字符串輸入不需要進行類型轉換和注意換行符
$ ./user_input_str.py Hi there! What's your name? learnbyexample And your favorite color is? blue learnbyexample, I like the blue color too
以上是python定義用戶輸入的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創新互聯-成都網站建設公司行業資訊頻道!
文章名稱:python定義用戶輸入的方法-創新互聯
網站網址:http://vcdvsql.cn/article32/csippc.html
成都網站建設公司_創新互聯,為您提供云服務器、小程序開發、網站內鏈、域名注冊、網頁設計公司、搜索引擎優化
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯