マガジンのカバー画像

Python

51
運営しているクリエイター

2022年10月の記事一覧

【Python】SimplePrograms line 13 unittest

【Python】SimplePrograms line 13 unittest

プログラム13行プログラムです。

import unittestdef median(pool): copy = sorted(pool) size = len(copy) if size % 2 == 1: return copy[int((size - 1) / 2)] else: return (copy[int(size/2 - 1)]

もっとみる
【Python】SimplePrograms line 12 Classes

【Python】SimplePrograms line 12 Classes

プログラム12行プログラムです。

class BankAccount(object): def __init__(self, initial_balance=0): self.balance = initial_balance def deposit(self, amount): self.balance += amount def withdraw

もっとみる
【Python】SimplePrograms line 10 (時間とfrom-importとfor-else)

【Python】SimplePrograms line 10 (時間とfrom-importとfor-else)

プログラム10行プログラムです。

from time import localtime activities = {8: 'Sleeping', 9: 'Commuting', 17: 'Working', 18: 'Commuting', 20: 'Eating', 22: 'Resting' } time_now = localtime() hour = time_now.tm_hour f

もっとみる
【Python】SimplePrograms line 11 (三重引用符: '''と while)

【Python】SimplePrograms line 11 (三重引用符: '''と while)

プログラム11行プログラムです。

REFRAIN = '''%d bottles of beer on the wall,%d bottles of beer,take one down, pass it around,%d bottles of beer on the wall!'''bottles_of_beer = 9while bottles_of_beer > 1: print

もっとみる