初識 Python:Hello World 和字元串操作
開始之前,說一下本文中的代碼和視頻可以在我的 GitHub 上找到。
那麼,讓我們開始吧!如果你糊塗了,我建議你在單獨的選項卡中打開下面的視頻。
開始 (先決條件)
首先在你的操作系統上安裝 Anaconda (Python)。你可以從官方網站下載 anaconda 並自行安裝,或者你可以按照以下這些 anaconda 安裝教程進行安裝。
打開一個 Jupyter Notebook
打開你的終端(Mac)或命令行,並輸入以下內容(請參考視頻中的 1:16 處)來打開 Jupyter Notebook:
jupyter notebook
列印語句/Hello World
在 Jupyter 的單元格中輸入以下內容並按下 shift + 回車
來執行代碼。
# This is a one line comment
print('Hello World!')
列印輸出 「Hello World!」
字元串和字元串操作
字元串是 Python 類的一種特殊類型。作為對象,在類中,你可以使用 .methodName()
來調用字元串對象的方法。字元串類在 Python 中默認是可用的,所以你不需要 import
語句來使用字元串對象介面。
# Create a variable
# Variables are used to store information to be referenced
# and manipulated in a computer program.
firstVariable = 'Hello World'
print(firstVariable)
輸出列印變數 firstVariable
# Explore what various string methods
print(firstVariable.lower())
print(firstVariable.upper())
print(firstVariable.title())
使用 .lower()、.upper() 和 title() 方法輸出
# Use the split method to convert your string into a list
print(firstVariable.split(' '))
使用 split 方法輸出(此例中以空格分隔)
# You can add strings together.
a = "Fizz" + "Buzz"
print(a)
字元串連接
查詢方法的功能
對於新程序員,他們經常問你如何知道每種方法的功能。Python 提供了兩種方法來實現。
1、(在不在 Jupyter Notebook 中都可用)使用 help
查詢每個方法的功能。
查詢每個方法的功能
2.(Jupyter Notebook 專用)你也可以通過在方法之後添加問號來查找方法的功能。
# To look up what each method does in jupyter (doesnt work outside of jupyter)
firstVariable.lower?
在 Jupyter 中查找每個方法的功能
結束語
如果你對本文或在 YouTube 視頻的評論部分有任何疑問,請告訴我們。文章中的代碼也可以在我的 GitHub 上找到。本系列教程的第 2 部分是簡單的數學操作。
via: https://www.codementor.io/mgalarny/python-hello-world-and-string-manipulation-gdgwd8ymp
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive