iT邦幫忙

ovenchang 的所有留言 7

Day26- python內建itertools模組簡介,窮舉排列組合

排列from itertools import permutationsprint(list(permutations("ABCD",2))...

2020-04-24 ‧ 由 ovenchang 留言

Day21- 黑魔法,recursion,recursion depon (遞迴函數的介紹)

大的金片永遠在小的金片上面 這句是對的嗎?

2020-04-23 ‧ 由 ovenchang 留言

達標好文 Day7- 如果你願意一層一層一層 的剝開繁瑣邏輯 (化簡冗長的if-else教學)

def isLeapYear(n): return True if not n%4 and n%100 or not n%400 else False...

2020-04-16 ‧ 由 ovenchang 留言

Day6- 超完整python字串函數用法統整

import re def isLegal(s): regex = r"^[a-zA-Z_]\w+$" if tuple(r...

2020-04-16 ‧ 由 ovenchang 留言

達標好文 Day5- 節約迴圈大作戰,方便的串接與重複運算: 「+」 與 「*」

def hidePassword(psd): return '*'*len(psd) pd=input("psd=") print(...

2020-04-15 ‧ 由 ovenchang 留言