LoginSignup
0
0

More than 3 years have passed since last update.

QiitaのMarkdown 練習用

Posted at

見出し1

見出し2

見出し3

コードの挿入

import collections

Card = collections.namedtuple('Card', ['rank', 'suit'])

class FrenchBook:
    ranks = [str(n) for n in range(2, 11)] + list('JDKA')
    suits = 'spades diamonds clubs hearts'.split()

    def __init__(self):
        self._cards = [Card(rank, suit) for suit in self.suits
                                       for rank in self.ranks]

    def __len__(self):
        return len(self._cards)

    def __getitem__(self, position):
        return self._cards[position]

3 リンクの挿入、画像の埋め込み

Real Python

4 引用

引用ようです
もう一回

ネストです

5 文字の修飾

part1
修飾中
part2
修飾中

6 リスト

順序なし

  • list1
  • list2
  • list3
  • list4

順序あり

  1. リスト1
  2. リスト2

7 水平線



8

左揃え 中央揃え 右揃え
align-left align-center align-right
セルの左揃えです セルの中央揃えです セルの右揃えです
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0