【 Python 】 輕鬆學習字串方法

【 Python 】 輕鬆學習字串方法

CodeShiba 程式柴

1 год назад

13,327 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@ericc2044
@ericc2044 - 22.08.2024 18:51

name = input("請輸入使用者名稱:")
length = len(name)
space = name.count(" ")
alpha = int(name.isalpha())
if space==0 or length>12 or alpha==1 :
print(f"歡迎{name}")
else:
print("輸入錯誤")

Ответить
@user-ho4yc2th2m
@user-ho4yc2th2m - 07.05.2024 07:59

username = input("請輸入字串")
if " " in username:
print("不可以包含空格")
elif len(username)>12:
print("OVER 12 CHAR")
elif username.isalpha() == 0:
print("contains other characters")
else :
print("歡迎"+username)

原本用str當變數名稱 一直覺得怪怪的

Ответить
@hhka1679
@hhka1679 - 30.04.2024 18:27

現在學程式不懂就掉給cgpt ,好幸福😂

Ответить
@michill6994
@michill6994 - 26.04.2024 05:37

補充: capitalize():為首字母大寫其餘轉為小寫。 如: helloWorld.capitalize() > Helloworld

Ответить
@morikuniminamoto8573
@morikuniminamoto8573 - 16.04.2024 08:42

一個影片複習了好幾次 這就叫效率

Ответить
@user-pc8su2jt7e
@user-pc8su2jt7e - 23.02.2024 17:26

想請問print(f"......")跟print(".......")有什麼區別呢?
另外 " " 跟 ' ' 又有甚麼區別呢?

Ответить
@La-gl2ui
@La-gl2ui - 19.02.2024 14:57

程式練習的部分 若我打的使用者名稱是aoaihfsihfioahf 456484 錯誤要怎麼一次顯示出來?

Ответить
@user-nm5wg5cw9h
@user-nm5wg5cw9h - 26.01.2024 13:07

3分整的时候是不是和前面内容一样的啊 可能剪的时候复制了一遍?😂

Ответить
@Stephen33421
@Stephen33421 - 23.11.2023 12:36

筆記:
len(str):字數,
str.find('a'):找尋位置, str.capitalize():首字母大寫
str.upper():轉大寫, str.lower():轉小寫
str.count('a'):出現次數, str.replace('a','b'):取代
str.isalpha():全英文

Ответить
@alvin5537
@alvin5537 - 22.11.2023 13:19

您好我有問題想詢問,我在最後程式練習的部分,一開始嘗試用跟影片不一樣的寫法來判斷是否使用者輸入的字串中含有空格,我使用
if name2.find(" ") :
print('掰掰')
來判斷使用者輸入的字串name2中是否有空格,但無論name2中是否有包含空格,皆會被執行,這不符合我原本的預期,想問為什麼 ? 謝謝。

Ответить
@user-ic8li6cg3n
@user-ic8li6cg3n - 12.09.2023 16:47

請問為什麼elif " " in username ,無法用這個 elif username.find(" ") ?

Ответить