獻醜一下 a = int(input()) b = int(input()) num = list(x for x in range(a, b+1)) cou...
我來補上f-string的寫法 x = int(input()) print(f'Original:{x:.2f}') print(f'Adjusted:{x*...
也感謝樓上的高手,讓我學到許多。我也來回答個笨方法吧!! import pandas as pd datas = [2, 4, 5, 6, 7, 8, 9,...
大概是這樣 import requests from bs4 import BeautifulSoup url="https://www.ptt.c...
雖然已有解答但我也提供一個例子供大家參考因為我也是初學者當初也在類別class這東西上迷糊了半天 class Round: def __init__(s...
小弟想到兩種方式如果在高手眼中太拙劣請見諒 import random options = ['apple', 'pear', 'peach', 'orang...