python基礎 輸入輸出

2021-08-28 03:19:23 字數 1329 閱讀 7965

'''

input

print

知識點:

1.input預設接收使用者輸入內容為字串型別

2.print直接輸出字串內容

''''''

card_id = input('請輸入學號:')

pwd = input('請輸入密碼:')

print(card_id)

print(type(card_id))

print(pwd)

'''#1.print列印字串

print('hello world')

#2.print列印變數值

name = 'zhangsan'

print(name)

#3.print格式化輸出

#使用佔位符格式化輸出

# %s表示字串轉化格式 %d表示整數 %f表示浮點數

card_id = input('請輸入學號:')

pwd = input('請輸入密碼:')

print(card_id)

#print(type(card_id))

print(pwd)

print('您輸入的學號是:%s'%card_id) #%s表示字串型別,先在引號內部格式化要輸出的字串

print('您輸入的密碼是:%s'%pwd)

#同時輸出多個變數

card_id = '123'

pwd = 234

print('您輸入的學號是:%s,您輸入的密碼是:%d'%(card_id,pwd))

#輸出浮點數,預設輸出6位,若想保留2位有效數字,則寫成%.2f,指定精度

height = 180.5

print('您的身高是:%.2f'%height)

#若想輸出%,則要用兩個%%表示是字串,而不是轉換說明符

p = 99.99

print('您戰勝了全國%.2f%%的使用者'%p)

#print無換行輸出

print('hello',end='')

print('python')

#輸出換行符

print('中國\n上海')

#轉義字元\

print('中國\\n上海')

#format函式

card_id = '123'

pwd = 234

print('您輸入的學號是:{},您輸入的密碼是:{}'.format(card_id,pwd))

#format函式保留兩位小數

height = 180.3534

print('您的身高是:'.format(height))

Python基礎 輸入輸出

基本格式 常用格式化字元 含義 s 字串 d 有符號十進位制的整數,06d 輸出的整數顯示位數,不足的地方使用0補全 f浮點數 2f表示顯示小數點的後兩位 輸出 變數輸出例項需求 定義整數變數 student no,輸出 我的學號是 000001 student no 1 print 學號是 06d...

python基礎輸入輸出

輸出 print 加上 字串就可以輸出 print 函式也可以接受多個字串,用逗號 隔開,結果 會變成空格 print 函式中可以直接進行簡單的數 算 print 字串 輸出變數 表示拼接 兩邊的變數型別必須保持一致 格式化輸出 print 字串 s,s,s 對應佔位符的內容 s佔位符 str強制轉...

Python基礎 輸入輸出

輸出 print 如果要在一行中輸出多個值,那麼輸出的n個值分別使用逗號隔開 例如 print val1,val2 輸入 raw input some description python 2.7語法 input some description python 3.x語法 輸入密碼 先導入getpa...