溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python Hello World和字符串操作的實(shí)例分析

發(fā)布時(shí)間:2021-10-26 17:33:32 來源:億速云 閱讀:236 作者:柒染 欄目:編程語(yǔ)言

Python Hello World和字符串操作的實(shí)例分析,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。開

那么,讓我們開始吧!如果你糊涂了,我建議你在單獨(dú)的選項(xiàng)卡中打開下面的視頻。

  • Python 的 Hello World 和字符串操作視頻

開始 (先決條件)

首先在你的操作系統(tǒng)上安裝 Anaconda (Python)。你可以從官方網(wǎng)站下載 anaconda 并自行安裝,或者你可以按照以下這些 anaconda 安裝教程進(jìn)行安裝。

  • 在 Windows 上安裝 Anaconda: [鏈接5

  • 在 Mac 上安裝 Anaconda: 鏈接

  • 在 Ubuntu (Linux) 上安裝 Anaconda:鏈接

打開一個(gè) Jupyter Notebook

打開你的終端(Mac)或命令行,并輸入以下內(nèi)容(請(qǐng)參考視頻中的 1:16 處)來打開 Jupyter Notebook:

jupyter notebook

打印語(yǔ)句/Hello World

在 Jupyter 的單元格中輸入以下內(nèi)容并按下 shift + 回車來執(zhí)行代碼。

# This is a one line commentprint('Hello World!')

Python Hello World和字符串操作的實(shí)例分析

打印輸出 “Hello World!”

字符串和字符串操作

字符串是 Python 類的一種特殊類型。作為對(duì)象,在類中,你可以使用 .methodName() 來調(diào)用字符串對(duì)象的方法。字符串類在 Python 中默認(rèn)是可用的,所以你不需要 import 語(yǔ)句來使用字符串對(duì)象接口。

# Create a variable# Variables are used to store information to be referenced# and manipulated in a computer program.firstVariable = 'Hello World'print(firstVariable)

Python Hello World和字符串操作的實(shí)例分析

輸出打印變量 firstVariable

# Explore what various string methodsprint(firstVariable.lower())print(firstVariable.upper())print(firstVariable.title())

Python Hello World和字符串操作的實(shí)例分析

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

# Use the split method to convert your string into a listprint(firstVariable.split(' '))

Python Hello World和字符串操作的實(shí)例分析

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

# You can add strings together.a = "Fizz" + "Buzz"print(a)

Python Hello World和字符串操作的實(shí)例分析

字符串連接

查詢方法的功能

對(duì)于新程序員,他們經(jīng)常問你如何知道每種方法的功能。Python 提供了兩種方法來實(shí)現(xiàn)。

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

Python Hello World和字符串操作的實(shí)例分析

查詢每個(gè)方法的功能

2.(Jupyter Notebook 專用)你也可以通過在方法之后添加問號(hào)來查找方法的功能。

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

Python Hello World和字符串操作的實(shí)例分析

在 Jupyter 中查找每個(gè)方法的功能

關(guān)于Python Hello World和字符串操作的實(shí)例分析問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI