7 輸入輸出

2021-10-01 07:45:20 字數 975 閱讀 3566

str.format()

print('').format(1,2)#212

print(','.format(name='ji',age='22'))#ji,22

print(','.format([0,1,2]))#2,0

print(''.format('陳某某'))#居中

print(''.format('陳某某'))#右對齊

print(''.format('陳某某'))#左對齊

print(''.format('陳某某'))#左對齊用*補齊

print(''.format('陳某某'))#右對齊用&補齊

print(''.format(123.45678))#123.4568四捨五入

#b,o,d,x分別表示

二、八、十、十六進製制

print(''.format(14))#1110

print('')#10代表最小字元寬度

table=

print('a:,b:'.format(**table))

print('a:,b:'.format(table))

#a:1,b:2

json.dump(data,f)將資料寫為json檔案

json.dumps(data)將data轉為json檔案

json.loads()將json檔案轉為python資料

json.load()讀取jso檔案

import json

data=

json_data=json.dumps(data)

da=json.loads(json_data)#和data一樣

with open('a.json','w') as f:

json.dump(data,f)

with open('a.json','r') as f:

json.load(f)

記 輸入輸出測試 7

描述 輸入 n 個數字,輸出數字 1 的數量 數字 0 的數量。輸入第一行是乙個正整數 n 代表數字的數量。第二行是 n 個非負整數,這些數字兩兩之間以空格分開。輸出數字 1 的數量 數字 0 的數量,然後換行。樣例輸入 50 1 2 3 4 樣例輸出 2初始自己瞎寫版 include using ...

7 HDFS輸入輸出流

hdfs的輸入輸出流用於對hdfs檔案進行位元組的讀取或寫入。把windows本地檔案通過hdfs的輸出流寫到hdfs檔案中。test public void testhdfsiooutput throws ioexception,interruptedexception,urisyntaxexce...

作業7 輸入輸出與模板

1.簡單的sumarray 1 填寫模板 printarray,使得程式輸出結果是 tomjackmaryjohn 10 不得編寫sumarray函式 23 include 4 include 5using namespace std 6 template 7 t sumarray t begin,...