iT邦幫忙

褲底農民 的所有回答 6

[python]輸出超過字數換行

獻醜一下 a = int(input()) b = int(input()) num = list(x for x in range(a, b+1)) cou...

2020-06-14 ‧ 由 lydia0231 提問

請問一下Python 要如何印出(+數字)

我來補上f-string的寫法 x = int(input()) print(f'Original:{x:.2f}') print(f'Adjusted:{x*...

2020-06-03 ‧ 由 sherry0321 提問

python dataframe加總

也感謝樓上的高手,讓我學到許多。我也來回答個笨方法吧!! import pandas as pd datas = [2, 4, 5, 6, 7, 8, 9,...

2018-12-09 ‧ 由 ginbow 提問

關於Python執行結果輸出 txt檔

大概是這樣 import requests from bs4 import BeautifulSoup url="https://www.ptt.c...

2018-11-15 ‧ 由 liwei290341 提問

python 物件導向 疑問

雖然已有解答但我也提供一個例子供大家參考因為我也是初學者當初也在類別class這東西上迷糊了半天 class Round: def __init__(s...

2018-11-11 ‧ 由 JK 提問

如何在Python的random中增加限制?

小弟想到兩種方式如果在高手眼中太拙劣請見諒 import random options = ['apple', 'pear', 'peach', 'orang...

2018-10-26 ‧ 由 vsu91267 提問