Python入門筆記(一)

2021-08-21 08:58:49 字數 1470 閱讀 3254

# -*- coding: utf-8 -*-

print "hello world"

# ====多行語句====

sums = 1 + \

2 + \

3print(sums)

days = ['monday', 'tuesday',

'monday']

print(days)

# *****等待使用者輸入*****=

# raw_input("按下 enter 鍵退出,其他鍵任意顯示... \n")

# *****同一行顯示多條語句*****==

# 用;分開

import sys; x = 'runoob'; sys.stdout.write(x + '\n')

# *****輸出語句*****===

x = 'a' # py中的變數不用宣告變數型別但是必須得賦值之後才會被建立

y = 'b'

print x, # 加了逗號表示不換行輸出

print y

# *****=條件判斷*****

sc = 80

if sc < 60:

# 注意要有冒號

print 'e'

else:

print "過了"

# 要輸出漢字需要在開頭加個東西

# *****=多個變數賦值**********

a = b = c = 1

print a, b, c

print (a, b, c) # 這樣輸出會帶乙個括號

m, n, p = 1, 2, "join"

print m, n, p

# *****==標準資料型別

'''numbers (數字)

string (字串)

list (列表)

tuple (元組)

dictionary (字典)

'''# *****=迴圈控制*****==

# 輸出金字塔

level = 0

# 縮排問題

while level < 10: # 兩個逗號不能少 注意縮排

Python入門基礎筆記一

基礎語法 運算子1.不用事先宣告型別,隨時可以賦值為其他型別 2.程式設計時不知道是什麼型別,很難推斷 編譯時無法檢查,只有執行時才能檢查 由符號 標註的文字 浮點數 num 1 string type num let s go string type num he s old string typ...

Python入門學習筆記(一)

變數修改注意不同變數賦值時的變數位址變化 變數刪除del 變數名數字 int,float 字串 print hahhaha hah str name str.center 50,out name str name hometown shanghai print str hometown out na...

Python快速入門學習筆記(一)

本篇文章適合有其他高階語言基礎的人群閱讀 使用的python版本為python2.7 使用的編輯器為sublime text3 世界始於hello world print hello world 列印hello world,python中 號表示注釋 raw input 函式時系統提供給使用者的函式...