目錄
#!/user/bin/python
#coding=utf-8
#author@ zjw
#1:print "hello world!"
#2:print"hello ""world!"
#3:print("hello world!")
#4:print "hello","world!"
#5:print"hello",
print"world!"
hello world!hello world!
hello world!
hello world!
hello world!
#!/user/bin/python
#coding=utf-8
#author@ zjw
#1:str = "monday " + \
"tuesday " + \
"wednesday"
print(str)
#2:str = "monday tuesday wednesday"
print(str)
monday tuesday wednesday
#!/user/bin/python
#coding=utf-8
#author@ zjw
#單行注釋
'''
多行注釋
多行注釋
'''"""
多行注釋
多行注釋
"""str1 = '這是單行字串1'
str2 = "這是單行字串2"
str3 = '''這是多行字串3
這是多行字串3'''
str4 = """這是多行字串4
這是多行字串4"""
print str1
print str2
print str3
print str4
這是單行字串1這是單行字串2
這是多行字串3
這是多行字串3
這是多行字串4
這是多行字串4
#!/user/bin/python
#coding=utf-8
#author@ zjw
raw_input("除非按下enter鍵,否則所有的輸入都是可顯示的...\n")
x = raw_input("輸入乙個字串:")
print(x)
除非按下enter鍵,否則所有的輸入都是可顯示的...what i type at will
輸入乙個字串:hello world!
hello world!
#!/user/bin/python
#coding=utf-8
#author@ zjw
x = 1; y = 2
t = x; x = y; y = t
print x; print y
學習筆記之Python學習(一)
一開始學習python的時候,我也只是看了一兩本介紹python語言的書籍程度,並沒有實際去接觸它。然後最近需要學習openmv3,需要編寫python語言才能執行它,才開始慢慢的了解它,接下來的python講解我也是基於openmv3的應用操作來記錄的。開發環境 win10 python軟體版本 ...
Python 學習筆記之語法(一)
python對語法格式要求很嚴格,因此,在編寫時一定要注意這些問題,比如下面就是這樣的問題 traceback most recent call last file line 1,in file d anzhuang anaconda lib site packages spyderlib widg...
Python學習入門8 新人怎麼學習Python
人生苦短 我用python 不論學習什麼語言 乙個好的基礎才是你成為高階開發人員的基石。隨著人工智慧和大資料的火熱,python成為了廣大科學家和普通大眾的學習語言。在學習python的過程中,有很多人感到迷茫,不知道自己該從什麼地方入手,今天我們就來說一些新手該如何學習python程式設計。在學習...