這是為學爬蟲學習的最基本的一些語法知識,實用至上,沒有對c++那麼深入。
python確實挺....簡單的,不是難度方面。
使用print()直接輸出即可
# 標準輸出字串
print("hello, world")
# 輸出變數
a = 10 #是的你沒有看錯,不需要指定資料型別
print(a)
# 中間使用逗號間隔開即可
print("www", "baidu", "com")
# 輸出多個物件時設定間隔符
# 設定輸出的結尾符,預設是回車,即執行乙個輸出函式後自動換行
print("hellow", end="")
# 輸出語句中加入佔位符,並在後面使用`%`指定內容,可以使用多個佔位符
print("我的年紀是: %d 歲"%age)
print("我的名字是%s, 我的國籍是%s"%("小張", "中國"))
%s 通過str()字串轉換來格式化輸出
%d 有符號十進位制整數
# 在字串中使用,用來輸出一些原本不方便輸出的特殊字元
print("hello!\n")
\n 回車鍵
\t 製表符
\\ 反斜槓符號
\' 單引號
\" 雙引號
使用input()函式。
# 函式的引數是顯示在螢幕上的提示資訊,返回值即輸入的值
password = input("請輸入密碼")
print("您剛剛輸入的密碼是:", password)
# 輸入的值會被自動當成字串處理,某些情況下就需要強制轉換。例如想要輸入乙個數字時。
int_password = int(password) #注意只有真的輸入的為整型數字才行,不然會報錯
print(type(int_password))
c 基本語法輸入輸出
1.寫c 程式之前需要先把框架 搭好 無報錯後再繼續向下寫 include includeusing namespace std 單行 注釋 多行 注釋 int main 2.c 輸出 scanf,printf 版本 include includeusing namespace std 輸入 輸出 ...
c 輸入輸出基本語法
include using namespace std 命名空間 cout 結果是 addarray 流物件cin,型別是istream 注意 c 允許程式設計師在任意位置宣告變數 cin.ignore n 忽略前n個位元組 cin.getline buffer,10 獲取一行 cin.get 獲取...
Python 基本輸入輸出
1.輸出 print hello,world python3中print需要加 print hello,world 多個字串之間用 逗號連線 print hello world 且遇到逗號會輸出乙個空格。2.注釋 python中用 注釋 print hello 3.變數 python中定義變數時不需...