整數(shù)輸入

創(chuàng)新互聯(lián)是網(wǎng)站建設(shè)專家,致力于互聯(lián)網(wǎng)品牌建設(shè)與網(wǎng)絡(luò)營(yíng)銷,專業(yè)領(lǐng)域包括成都網(wǎng)站制作、做網(wǎng)站、電商網(wǎng)站制作開發(fā)、微信小程序定制開發(fā)、微信營(yíng)銷、系統(tǒng)平臺(tái)開發(fā),與其他網(wǎng)站設(shè)計(jì)及系統(tǒng)開發(fā)公司不同,我們的整合解決方案結(jié)合了恒基網(wǎng)絡(luò)品牌建設(shè)經(jīng)驗(yàn)和互聯(lián)網(wǎng)整合營(yíng)銷的理念,并將策略和執(zhí)行緊密結(jié)合,且不斷評(píng)估并優(yōu)化我們的方案,為客戶提供全方位的互聯(lián)網(wǎng)品牌整合方案!
#!/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))讓我們給定一個(gè)整數(shù)和字符串來測(cè)定這個(gè)程序
Python docs - 整數(shù)文本
$ ./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, inusr_num = int(usr_ip) ValueError: invalid literal for int() with base 10: 'abc'
浮點(diǎn)數(shù)輸入
#!/usr/bin/python3
usr_ip = input("Enter a floating point number: ")
# 需要將輸入的字符串顯式地指定為我們需要的類型
usr_num = float(usr_ip)
sqr_num = usr_num * usr_num
# 限制小數(shù)點(diǎn)位數(shù)
print("Square of entered number is: {0:.2f}".format(sqr_num))E 科學(xué)計(jì)數(shù)法在需要時(shí)可以使用
Python文檔 - 浮點(diǎn)數(shù)文本
Python文檔 - 浮點(diǎn)數(shù)
$ ./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, inusr_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,字符串輸入不需要進(jìn)行類型轉(zhuǎn)換和注意換行符
$ ./user_input_str.py Hi there! What's your name? learnbyexample And your favorite color is? blue learnbyexample, I like the blue color too
本文題目:創(chuàng)新互聯(lián)Python教程:python中如何獲取用戶輸入
文章起源:http://www.5511xx.com/article/dpegppo.html


咨詢
建站咨詢
