歡迎光臨
每天分享高質量文章

初識 Python:Hello World 和字串操作 | Linux 中國

本文中的程式碼和影片可以在我的 GitHub 上找到。
— Michael


致謝
編譯自 | https://www.codementor.io/mgalarny/python-hello-world-and-string-manipulation-gdgwd8ymp 
 作者 | Michael
 譯者 | geekpi ? ? 共計翻譯:677 篇 貢獻時間:1608 天

開始之前,說一下本文中的程式碼[1]影片[2]可以在我的 GitHub 上找到。

那麼,讓我們開始吧!如果你糊塗了,我建議你在單獨的選項卡中開啟下麵的影片。

◈ Python 的 Hello World 和字串操作影片[2]

開始 (先決條件)

首先在你的作業系統上安裝 Anaconda (Python)。你可以從官方網站[3]下載 anaconda 並自行安裝,或者你可以按照以下這些 anaconda 安裝教程進行安裝。

◈ 在 Windows 上安裝 Anaconda: [連結5[4]
◈ 在 Mac 上安裝 Anaconda: 連結[5]
◈ 在 Ubuntu (Linux) 上安裝 Anaconda:連結[6]

開啟一個 Jupyter Notebook

開啟你的終端(Mac)或命令列,並輸入以下內容(請參考影片中的 1:16 處[7])來開啟 Jupyter Notebook:

  1. jupyter notebook

列印陳述句/Hello World

在 Jupyter 的單元格中輸入以下內容並按下 shift + 回車來執行程式碼。

  1. # This is a one line comment

  2. print('Hello World!')

列印輸出 “Hello World!”

字串和字串操作

字串是 Python 類的一種特殊型別。作為物件,在類中,你可以使用 .methodName() 來呼叫字串物件的方法。字串類在 Python 中預設是可用的,所以你不需要 import 陳述句來使用字串物件介面。

  1. # Create a variable

  2. # Variables are used to store information to be referenced

  3. # and manipulated in a computer program.

  4. firstVariable = 'Hello World'

  5. print(firstVariable)

輸出列印變數 firstVariable

  1. # Explore what various string methods

  2. print(firstVariable.lower())

  3. print(firstVariable.upper())

  4. print(firstVariable.title())

使用 .lower()、.upper() 和 title() 方法輸出

  1. # Use the split method to convert your string into a list

  2. print(firstVariable.split(' '))

使用 split 方法輸出(此例中以空格分隔)

  1. # You can add strings together.

  2. a = "Fizz" + "Buzz"

  3. print(a)

字串連線

查詢方法的功能

對於新程式員,他們經常問你如何知道每種方法的功能。Python 提供了兩種方法來實現。

1、(在不在 Jupyter Notebook 中都可用)使用 help 查詢每個方法的功能。

查詢每個方法的功能

2.(Jupyter Notebook 專用)你也可以透過在方法之後新增問號來查詢方法的功能。

  1. # To look up what each method does in jupyter (doesnt work outside of jupyter)

  2. firstVariable.lower?

在 Jupyter 中查詢每個方法的功能

結束語

如果你對本文或在 YouTube 影片[2]的評論部分有任何疑問,請告訴我們。文章中的程式碼也可以在我的 GitHub[1] 上找到。本系列教程的第 2 部分是簡單的數學操作[8]


via: https://www.codementor.io/mgalarny/python-hello-world-and-string-manipulation-gdgwd8ymp

作者:Michael[10] 譯者:geekpi 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

贊(0)

分享創造快樂