1. python的輸出:
python2: print "要列印的字串"
python3: print("要列印的字串")
2. python的輸入:
python2:
raw_input(): 接收字串的資料;
input(): 只能接收數值;型別;
python3操作: 沒有raw_input,只有input,
python3中為了避免記憶困難, 用input接收資料, 為字串型別;
3. python中支援的數值型別: int,long,float, complex
print(type(**))可以檢視變數的資料型別;
4. 資料型別的轉換: 在python中, 所有的資料型別,都可以作為內建函式, 轉換資料型別;
5. 如何刪除記憶體中的變數;
ain't= 5
print aint
print "deleting aint......."
del aint
print aint #此時會報錯,輸出aint沒有定義;
python的輸入輸出格式
1.輸入格式 1 直接輸入 raw input 提示詞 2 將輸入的值賦值給passwd passwd raw input 請輸入你的密碼 3 將輸入的值轉換型別賦值給price price float raw input 水果的單價 2.輸出格式 1 print 格式化字串 變數1 print 你...
c 輸入輸出格式控制
使用這些格式需要宣告包含 long flags const 返回當前的格式標誌。long flays long newflag 設定格式標誌為newflag,返回舊的格式標誌。long setf long bits 設定指定的格式標誌位,返回舊的格式標誌。long setf long bits,lo...
ACM常用輸入輸出格式
因為acm新人對於acm題目中處理輸入輸出存在一些疑惑,於是在這裡記錄幾種常用的輸入輸出方法。int n scanf d n while n c int a while scanf d a eof c int a while cin a c int n while scanf d n n 0 c i...