iT邦幫忙

0

幫我處理裡面的特殊字符

  • 分享至 

  • xImage

m, n = map(int, input().split()) # 讀取m和n

for i in range(m):
row = '' # 初始化一行
for j in range(1, n+1):
if j % 3 == 0: # 排除為3的倍數之數字
continue
row += str(j)
print(row) # 輸出一行

zcbxvsdf iT邦新手 5 級 ‧ 2023-04-11 19:06:21 檢舉
看得很頭痛,你先想好問題怎麼問吧
we684123 iT邦研究生 5 級 ‧ 2023-04-12 08:23:54 檢舉
"字元"
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
kennex_x
iT邦新手 4 級 ‧ 2023-04-11 11:12:59

不清楚你的問題是甚麼...
看你code感覺像是Python的語法
裡面有用到map的語法
Python map() 函数
給你參考一下=)

我要發表回答

立即登入回答