常用圆圈字符&“圆圈字符替换器”

75 篇文章 0 订阅

本文收录了162个常用圆圈字符,文内有“圆圈字符自动替换器”。


  (本笔记适合熟悉字符串数据类型的 coder 翻阅)


【学习的细节是欢悦的历程】


  自学并不是什么神秘的东西,一个人一辈子自学的时间总是比在学校学习的时间长,没有老师的时候总是比有老师的时候多。
            —— 华罗庚


等风来,不如追风去……


本文收录了162个常用圆圈字符
常用圆圈字符
(文内有“圆圈字符自动替换器”)


本文质量分:

96
本文地址: https://blog.csdn.net/m0_57158496/article/details/ID

CSDN质量分查询入口:http://www.csdn.net/qc


目 录



◆ 常用圆圈字符


1、圆圈字符


  • 网文摘录的圆圈字符

1、圆圈阿拉伯数字1-50:⓪①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳㉑㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛㉜㉝㉞㉟㊱㊲㊳㊴㊵㊶㊷㊸㊹㊺㊻㊼㊽㊾㊿

2、圆圈大写英文字母:ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ

3、圆圈小写英文字母:ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ

4、圆圈大写中文数字:㊀㊁㊂㊃㊄㊅㊆㊇㊈㊉

5、圆圈反写阿拉伯数字:❶❷❸❹❺❻❼❽❾❿


【原文链接:https://k.sina.cn/article_3546037087_d35c3b5f00100d9o0.html



回页目录


2、代码打印圆圈字符


  在用调试代码打印圆圈字符时,我看到有些圆圈汉字,比较常用,特收录进来,与大家共享。

#!/sur/bin/nve python
# coding: utf-8


circleNumbers = '⓪' + ''.join([chr(i) for i in range(9312, 9332)]) + ''.join([chr(i) for i in range(12881,12896)]) + ''.join([chr(i) for i in range(12977,12992)])
inverseCircleNumbers = ''.join([chr(i) for i in range(10102,10112)])
circleUppers = ''.join([chr(i) for i in range(9398, 9424)])
circleLowers = ''.join([chr(i) for i in range(9424,9450)])
circleChineses = ''.join([chr(i) for i in range(12928,12977)])

print(f"\n圆圈数字0~50:\n{circleNumbers}\n\n反白圆圈数字1~10:\n{inverseCircleNumbers}\n\n26个圆圈大写字母:\n{circleUppers}\n\n26个圆圈小写字母:\n{circleLowers}\n\n圆圈汉字({len(circleChineses)}):\n{circleChineses}")


  • 上面那几行代码,可以打印出162个常用的圆圈字符,它们包括数字、字母(分别含26个大小写字母)、和中文一至十的数字和少量常用汉字。

  • 代码运行输出效果
    截屏图片
    在这里插入图片描述

圆圈数字0~50:
⓪①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳㉑㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛ ㉜㉝㉞㉟㊱㊲㊳㊴㊵㊶㊷㊸㊹㊺㊻㊼㊽㊾㊿

反白圆圈数字1~10:
❶❷❸❹❺❻❼❽❾❿

26个圆圈大写字母:
ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ

26个圆圈小写字母:
ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ

圆圈汉字(49):
㊀㊁㊂㊃㊄㊅㊆㊇㊈㊉㊊㊋㊌㊍㊎㊏㊐㊑㊒㊓㊔㊕㊖㊗㊘㊙㊚㊛㊜㊝㊞㊟㊠㊡㊢㊣㊤㊥㊦㊧㊨㊩㊪㊫㊬㊭㊮㊯㊰



回页目录


3、“圆圈字符替换器”


  算法解析:要写“圆圈字符替换器”,得先行准备“普通字符与圆圈字符对应的字典”。
  0~50的数字圆圈字符、1~10反白数字圆圈字符key字符是连续的,可以用range()配合zip()函数生成对应字典;大小写字母普通字符和圆圈字符都是连续的,不用生成字典,可以直接用字符编码加减实现互换;汉字圆圈字符有多个汉字(繁体字、异体字)对应同一个圆圈字符的情况,用iter()函数把普通字符与圆圈字符依次紧挨的字符串转成迭代器再借助zip()函数生成字典,才是“最好的办法”!😋😋


3.1 圆圈字符对应字典生成


  • 代码运行输出“字典”效果
    截屏图片
    在这里插入图片描述

0~50圆圈数字字符字典:
{‘0’: ‘⓪’, ‘1’: ‘①’, ‘2’: ‘②’, ‘3’: ‘③’, ‘4’: ‘④’, ‘5’: ‘⑤’, ‘6’: ‘⑥’, ‘7’: ‘⑦’, ‘8’: ‘⑧’, ‘9’: ‘⑨’, ‘10’: ‘⑩’, ‘11’: ‘⑪’, ‘12’: ‘⑫’, ‘13’: ‘⑬’, ‘14’: ‘⑭’, ‘15’: ‘⑮’, ‘16’: ‘⑯’, ‘17’: ‘⑰’, ‘18’: ‘⑱’, ‘19’: ‘⑲’, ‘20’: ‘⑳’, ‘21’: ‘㉑’, ‘22’: ‘㉒’, ‘23’: ‘㉓’, ‘24’: ‘㉔’, ‘25’: ‘㉕’, ‘26’: ‘㉖’, ‘27’: ‘㉗’, ‘28’: ‘㉘’, ‘29’: ‘㉙’, ‘30’: ‘㉚’, ‘31’: ‘㉛’, ‘32’: ‘㉜’, ‘33’: ‘㉝’, ‘34’: ‘㉞’, ‘35’: ‘㉟’, ‘36’: ‘㊱’, ‘37’: ‘㊲’, ‘38’: ‘㊳’, ‘39’: ‘㊴’, ‘40’: ‘㊵’, ‘41’: ‘㊶’, ‘42’: ‘㊷’, ‘43’: ‘㊸’, ‘44’: ‘㊹’, ‘45’: ‘㊺’, ‘46’: ‘㊻’, ‘47’: ‘㊼’, ‘48’: ‘㊽’, ‘49’: ‘㊾’, ‘50’: ‘㊿’}

1~10反白圆圈数字字符字典:
{‘1’: ‘❶’, ‘2’: ‘❷’, ‘3’: ‘❸’, ‘4’: ‘❹’, ‘5’: ‘❺’, ‘6’: ‘❻’, ‘7’: ‘❼’, ‘8’: ‘❽’, ‘9’: ‘❾’, ‘10’: ‘❿’}

大小写字母圆圈字符对应表:
A=>Ⓐ B=>Ⓑ C=>Ⓒ D=>Ⓓ E=>Ⓔ F=>Ⓕ G=>Ⓖ H=>Ⓗ I=>Ⓘ J=>Ⓙ K=>Ⓚ L=>Ⓛ M=>Ⓜ N=>Ⓝ O=>Ⓞ P=>Ⓟ Q=>Ⓠ R=>Ⓡ S=>Ⓢ T=>Ⓣ U=>Ⓤ V=>Ⓥ W=>Ⓦ X=>Ⓧ Y=>Ⓨ Z=>Ⓩ

a=>ⓐ b=>ⓑ c=>ⓒ d=>ⓓ e=>ⓔ f=>ⓕ g=>ⓖ h=>ⓗ i=>ⓘ j=>ⓙ k=>ⓚ l=>ⓛ m=>ⓜ n=>ⓝ o=>ⓞ p=>ⓟ q=>ⓠ r=>ⓡ s=>ⓢ t=>ⓣ u=>ⓤ v=>ⓥ w=>ⓦ x=>ⓧ y=>ⓨ z=>ⓩ

汉字圆圈字符字典(49):
【由于繁体字、异体字,字典键有56个】
{‘一’: ‘㊀’, ‘二’: ‘㊁’, ‘三’: ‘㊂’, ‘四’: ‘㊃’, ‘五’: ‘㊄’, ‘六’: ‘㊅’, ‘七’: ‘㊆’, ‘八’: ‘㊇’, ‘九’: ‘㊈’, ‘十’: ‘㊉’, ‘月’: ‘㊊’, ‘火’: ‘㊋’, ‘水’: ‘㊌’, ‘木’: ‘㊍’, ‘金’: ‘㊎’, ‘土’: ‘㊏’, ‘日’: ‘㊐’, ‘株’: ‘㊑’, ‘有’: ‘㊒’, ‘社’: ‘㊓’, ‘名’: ‘㊔’, ‘特’: ‘㊕’, ‘财’: ‘㊖’, ‘財’: ‘㊖’, ‘祝’: ‘㊗’, ‘労’: ‘㊘’, ‘秘’: ‘㊙’, ‘男’: ‘㊚’, ‘女’: ‘㊛’, ‘適’: ‘㊜’, ‘优’: ‘㊝’, ‘優’: ‘㊝’, ‘印’: ‘㊞’, ‘注’: ‘㊟’, ‘项’: ‘㊠’, ‘項’: ‘㊠’, ‘休’: ‘㊡’, ‘写’: ‘㊢’, ‘正’: ‘㊣’, ‘上’: ‘㊤’, ‘中’: ‘㊥’, ‘下’: ‘㊦’, ‘左’: ‘㊧’, ‘右’: ‘㊨’, ‘医’: ‘㊩’, ‘宗’: ‘㊪’, ‘学’: ‘㊫’, ‘监’: ‘㊬’, ‘監’: ‘㊬’, ‘企’: ‘㊭’, ‘资’: ‘㊮’, ‘資’: ‘㊮’, ‘貲’: ‘㊮’, ‘协’: ‘㊯’, ‘協’: ‘㊯’, ‘夜’: ‘㊰’}

本次共计收录圆圈字符162个。


圆圈字符字典生成代码


circleNumberDict = dict(zip(map(str, range(51)), circleNumbers))
inverseCircleNumberDict = dict(zip(map(str, range(1, 11)), inverseCircleNumbers))
print(f"\n0~50圆圈数字字符字典:\n{circleNumberDict}\n\n1~10反白圆圈数字字符字典:\n{inverseCircleNumberDict}") # 打印0~50对应圆圈数字字符字典和1~10反白圆圈数字字符字典。

print(f"\n大小写字母圆圈字符对应表:")
number_A = ord('A')
step = ord('Ⓐ') - number_A
suppers = [f"{chr(i)}=>{chr(i+step)}" for i in range(ord('A'), ord('Z')+1)]
print(' '.join(suppers)) # 打印大写字母对应圆圈字符。
number_a = ord('a')
step = ord('ⓐ') - number_a
lowers = [f"{chr(i)}=>{chr(i+step)}" for i in range(ord('a'), ord('z')+1)]
print(' '.join(lowers)) # 打印小写字母对应圆圈字符。

circleChineseCharacters = '一㊀二㊁三㊂四㊃五㊄六㊅七㊆八㊇九㊈十㊉月㊊火㊋水㊌木㊍金㊎土㊏日㊐株㊑有㊒社㊓名㊔特㊕财㊖財㊖祝㊗労㊘秘㊙男㊚女㊛適㊜优㊝優㊝印㊞注㊟项㊠項㊠休㊡写㊢正㊣上㊤中㊥下㊦左㊧右㊨医㊩宗㊪学㊫监㊬監㊬企㊭资㊮資㊮貲㊮协㊯協㊯夜㊰'
chars = iter(circleChineseCharacters)
circleChineseCharacterDict = dict(zip(chars, chars))
print(f"\n汉字圆圈字符字典({len(circleChineseCharacterDict)-7}):\n<sub>【由于繁体字、异体字,字典键有56个】</sub>:\n{circleChineseCharacterDict}")

print(f"\n本次共计收录圆圈字符{(len(circleNumberDict|circleChineseCharacterDict)-7)+len(inverseCircleNumberDict)+52}个。\n")



回页目录


3.2 圆圈字符替换器


“圆圈字符替换器”源码


class CircleCharacter:
    
    def __init__(self):
        self.circleNumberDict = dict(zip(map(str, range(51)), circleNumbers)) # 生成0~50数字圆圈字符字典。
        self.inverseCircleNumberDict = dict(zip(map(str, range(1, 11)), inverseCircleNumbers)) # 生成1~10反白数字圆圈字符字典。
        circleChineseCharacters = '一㊀二㊁三㊂四㊃五㊄六㊅七㊆八㊇九㊈十㊉月㊊火㊋水㊌木㊍金㊎土㊏日㊐株㊑有㊒社㊓名㊔特㊕财㊖財㊖祝㊗労㊘秘㊙男㊚女㊛適㊜优㊝優㊝印㊞注㊟项㊠項㊠休㊡写㊢正㊣上㊤中㊥下㊦左㊧右㊨医㊩宗㊪学㊫监㊬監㊬企㊭资㊮資㊮貲㊮协㊯協㊯夜㊰'
        chars = iter(circleChineseCharacters) # 普通字符与圆圈字符对应序列字符串,用iter()函数转换成迭代器。
        self.circleChineseCharacterDict = dict(zip(chars, chars)) # 生成中文圆圈字符字典。


    def numberReplace(self, s):
        ''' 数字圆圈字符替换 '''
        d = self.circleNumberDict

        for i in list(d.keys())[::-1]: # 遍历字典self.circleNumberDict键。
        #for i in list(map(str, range(51)))[::-1]: # 遍历0~50数字字符串。

            if i in s:
                s = s.replace(i, d.get(i))

        return s


    def inverseNumberReplace(self, s):
        ''' 反白圆圈数字字符替换 '''
        d = self.inverseCircleNumberDict

        for i in list(d.keys())[::-1]:
            
            if i in s:
                s = s.replace(i, d.get(i))

        return s



    def letterEnglishReplace(self, s):
        ''' 英文字母圆圈字符替换 '''
        s = list(s)
        stepSupper = ord('Ⓐ') - ord('A')
        stepLower = ord('ⓐ') - ord('a')
        
        for i in range(len(s)):
            
            if s[i].isupper():
                s[i] = chr(ord(s[i])+stepSupper)
            elif s[i].islower():
                s[i] = chr(ord(s[i])+stepLower)

        return ''.join(s)


    def letterEnglishReplace6(self, s):
        ''' 英文字母圆圈字符替换 '''
        stepSupper = ord('Ⓐ') - ord('A')
        stepLower = ord('ⓐ') - ord('a')
        
        for i in s:
            
            if i.isupper():
                s = s.replace(i, chr(ord(i)+stepSupper))
            elif i.islower():
                s = s.replace(i, chr(ord(i)+stepLower))

        return s


    def characterChineseReplace(self, s):
        ''' 汉字圆圈字符替换 '''
        d = self.circleChineseCharacterDict
        
        for i in s:
            
            if i in d:
                s = s.replace(i, d.get(i))

        return s



回页目录


3.3 “圆圈字符替换器”试炼


  • 原字符串

    我是梦幻精灵_cq。
    a Chongqonger and I’m old man and I’m fifty old years.
    我喜欢Python,差不多24小时内都必然会码几行python 代码 。平时最爱闲逛CSDN,截止今日已在csdn驻扎2年多了;从2021年05月21日00时39分23秒发布第一篇博文笔记算起,到今天 已经有856天了。

  • 【试炼调用“圆圈字符替换器”代码】


if __name__ == '__main__':
    s = '''我是梦幻精灵_cq。
a Chongqonger and I'm old man and I'm fifty old years.
我喜欢Python,差不多24小时内都必然会码几行python 代码。平时最爱闲逛CSDN,截止今日已在csdn驻扎2年多了;从2021年05月21日00时39分23秒发布第一篇博文笔记算起,到今天已经有856天了。'''
    c = CircleCharacter()
    print(f"\n原字符串:\n{s}")
    print(f"\n\n数字替换后:\n{c.numberReplace(s)}")
    print(f"\n\n反白数字替换后:\n{c.inverseNumberReplace(s)}")
    print(f"\n\n英文字母字符替换后:\n{c.letterEnglishReplace(s)}")
    print(f"\n\n圆圈汉字字符替换后:\n{c.characterChineseReplace(s)}")
    print(f"\n\n圆圈数字、英文字母、汉字字符替换后:")
    s = c.numberReplace(s)
    s = c.letterEnglishReplace(s)
    print(c.characterChineseReplace(s))


  • 【替换器试炼效果】
    截屏图片
    在这里插入图片描述

  • 1、数字替换后
    (圆圈数字字符只收录0~50,我采用逆序开始替换的)

    我是梦幻精灵_cq。
    a Chongqonger and I’m old man and I’m fifty old years.
    我喜欢Python,差不多㉔小时内都必然会码几行python 代码 。平时最爱闲逛CSDN,截止今日已在csdn驻扎②年多了;从⑳㉑年⓪⑤月㉑日⓪⓪时㊴分㉓秒发布第一篇博文笔记算起,到今天已经有⑧⑤⑥天了。


  • 2、反白数字替换后
    (反白圆圈数字字符只有1~10)

    我是梦幻精灵_cq。
    a Chongqonger and I’m old man and I’m fifty old years.
    我喜欢Python,差不多❷❹小时内都必然会码几行python 代码 。平时最爱闲逛CSDN,截止今日已在csdn驻扎❷年多了;从❷0❷❶年0❺月❷❶日00时❸❾分❷❸秒发布第一篇博文笔记算起,到今天 已经有❽❺❻天了。


  • 3、英文字母字符替换后

    我是梦幻精灵_ⓒⓠ。
    ⓐ Ⓒⓗⓞⓝⓖⓠⓞⓝⓖⓔⓡ ⓐⓝⓓ Ⓘ’ⓜ ⓞⓛⓓ ⓜⓐⓝ ⓐⓝⓓ Ⓘ’ⓜ ⓕⓘⓕⓣⓨ ⓞⓛⓓ ⓨⓔⓐⓡⓢ.
    我喜欢Ⓟⓨⓣⓗⓞⓝ,差不多24小时内都必然会码几行ⓟⓨⓣⓗⓞⓝ 代码 。平时最爱闲逛ⒸⓈⒹⓃ,截止今日已在ⓒⓢⓓⓝ驻扎2年多了;从2021年05月21日00时39分23秒发布第一篇博文笔记算起,到今天 已经有856天了。


  • 4、圆圈汉字字符替换后

    我是梦幻精灵_cq。
    a Chongqonger and I’m old man and I’m fifty old years.
    我喜欢Python,差不多24小时内都必然会码几行python 代码 。平时最爱闲逛CSDN,截止今㊐已在csdn驻扎2年多了;从2021年05㊊21㊐00时39分23秒发布第㊀篇博文笔记算起,到今天 已经㊒856天了。

  • 5、圆圈数字、英文字母、汉字字符替换后

    我是梦幻精灵_ⓒⓠ。
    ⓐ Ⓒⓗⓞⓝⓖⓠⓞⓝⓖⓔⓡ ⓐⓝⓓ Ⓘ’ⓜ ⓞⓛⓓ ⓜⓐⓝ ⓐⓝⓓ Ⓘ’ⓜ ⓕⓘⓕⓣⓨ ⓞⓛⓓ ⓨⓔⓐⓡⓢ.
    我喜欢Ⓟⓨⓣⓗⓞⓝ,差不多㉔小时内都必然会码几行ⓟⓨⓣⓗⓞⓝ 代码 。平时最爱闲逛ⒸⓈⒹⓃ,截止今㊐已在ⓒⓢⓓⓝ驻扎②年多了;从⑳㉑年⓪⑤㊊㉑㊐⓪⓪时㊴分㉓秒发布第㊀篇博文笔记算起,到今天已经㊒⑧⑤⑥天了。



回页目录


4、完整源码

(源码较长,点此跳过源码)





回页首


上一篇:  交换两个整数有几种途径(原本以为利用变量或者异或可以交换两个整数;今天学到,加减也可以实现两个整数的交换)
下一篇: 

我的HOT博:

  本次共计收集 231 篇博文笔记信息,总阅读量 39.26w,平均阅读量 1699。已生成 26 篇阅读量不小于 3000 的博文笔记索引链接。数据采集于 2023-09-17 07:11:24 完成,用时 4 分 46.69 秒。


  1. ChatGPT国内镜像站初体验:聊天、Python代码生成等
    ( 58470 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/129035387
    点赞:125   踩 :0  收藏:795  打赏:0  评论:71
    本篇博文笔记于 2023-02-14 23:46:33 首发,最晚于 2023-07-03 05:50:55 修改。
  2. 让QQ群昵称色变的神奇代码
    ( 57892 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/122566500
    点赞:24   踩 :0  收藏:83  打赏:0  评论:17
    本篇博文笔记于 2022-01-18 19:15:08 首发,最晚于 2022-01-20 07:56:47 修改。
  3. pandas 数据类型之 DataFrame
    ( 9095 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/124525814
    点赞:6   踩 :0  收藏:31  打赏:0  评论:0
    本篇博文笔记于 2022-05-01 13:20:17 首发,最晚于 2022-05-08 08:46:13 修改。
  4. 个人信息提取(字符串)
    ( 7128 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/124244618
    点赞:1   踩 :0  收藏:13  打赏:0  评论:0
    本篇博文笔记于 2022-04-18 11:07:12 首发,最晚于 2022-04-20 13:17:54 修改。
  5. 罗马数字转换器|罗马数字生成器
    ( 6968 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/122592047
    点赞:0   踩 :0  收藏:1  打赏:0  评论:0
    本篇博文笔记于 2022-01-19 23:26:42 首发,最晚于 2022-01-21 18:37:46 修改。
  6. Python字符串居中显示
    ( 6832 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/122163023
    点赞:1   踩 :0  收藏:6  打赏:0  评论:1
    本篇博文笔记
  7. Python列表(list)反序(降序)的7种实现方式
    ( 6488 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/128271700
    点赞:5   踩 :0  收藏:20  打赏:0  评论:8
    本篇博文笔记于 2022-12-11 23:54:15 首发,最晚于 2023-03-20 18:13:55 修改。
  8. 斐波那契数列的递归实现和for实现
    ( 5491 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/122355295
    点赞:4   踩 :0  收藏:2  打赏:0  评论:8
    本篇博文笔记
  9. 练习:字符串统计(坑:f‘string‘报错)
    ( 5067 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/121723096
    点赞:0   踩 :0  收藏:1  打赏:0  评论:0
    本篇博文笔记
  10. python清屏
    ( 4993 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/120762101
    点赞:0   踩 :0  收藏:7  打赏:0  评论:0
    本篇博文笔记
  11. 回车符、换行符和回车换行符
    ( 4985 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/123109488
    点赞:1   踩 :0  收藏:2  打赏:0  评论:0
    本篇博文笔记于 2022-02-24 13:10:02 首发,最晚于 2022-02-25 20:07:40 修改。
  12. 练习:尼姆游戏(聪明版/傻瓜式•人机对战)
    ( 4895 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/121645399
    点赞:14   踩 :0  收藏:42  打赏:0  评论:0
    本篇博文笔记
  13. 密码强度检测器
    ( 4273 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/121739694
    点赞:1   踩 :0  收藏:4  打赏:0  评论:0
    本篇博文笔记于 2021-12-06 09:08:25 首发,最晚于 2022-11-27 09:39:39 修改。
  14. 练习:生成100个随机正整数
    ( 4204 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/122558220
    点赞:1   踩 :0  收藏:6  打赏:0  评论:0
    本篇博文笔记于 2022-01-18 13:31:36 首发,最晚于 2022-01-20 07:58:12 修改。
  15. 罗马数字转换器(用罗马数字构造元素的值取模实现)
    ( 4111 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/122608526
    点赞:0   踩 :0  收藏:0  打赏:0  评论:0
    本篇博文笔记于 2022-01-20 19:38:12 首发,最晚于 2022-01-21 18:32:02 修改。
  16. 我的 Python.color() (Python 色彩打印控制)
    ( 4022 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/123194259
    点赞:2   踩 :0  收藏:7  打赏:0  评论:0
    本篇博文笔记于 2022-02-28 22:46:21 首发,最晚于 2022-03-03 10:30:03 修改。
  17. 练习:班里有人和我同生日难吗?(概率probability、蒙特卡洛随机模拟法)
    ( 3839 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/124424935
    点赞:1   踩 :0  收藏:4  打赏:0  评论:0
    本篇博文笔记于 2022-04-26 12:46:25 首发,最晚于 2022-04-27 21:22:07 修改。
  18. 练习:仿真模拟福彩双色球——中500w巨奖到底有多难?跑跑代码就晓得了。
    ( 3635 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/125415626
    点赞:3   踩 :0  收藏:6  打赏:0  评论:3
    本篇博文笔记于 2022-06-22 19:54:20 首发,最晚于 2022-06-23 22:41:33 修改。
  19. random.sample()将在python 3.9x后续版本中被弃用
    ( 3570 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/120657230
    点赞:0   踩 :0  收藏:0  打赏:0  评论:0
    本篇博文笔记
  20. 聊天消息敏感词屏蔽系统(字符串替换 str.replace(str1, *) )
    ( 3419 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/124539589
    点赞:4   踩 :0  收藏:2  打赏:0  评论:3
    本篇博文笔记于 2022-05-02 13:02:39 首发,最晚于 2022-05-21 06:10:42 修改。
  21. Linux 脚本文件第一行的特殊注释符(井号和感叹号组合)的含义
    ( 3390 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/123087606
    点赞:0   踩 :0  收藏:4  打赏:0  评论:3
    本篇博文笔记于 2022-02-23 13:08:07 首发,最晚于 2022-04-04 23:52:38 修改。
  22. 练习:小炼二维数组
    ( 3243 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/125175592
    点赞:9   踩 :0  收藏:5  打赏:0  评论:9
    本篇博文笔记于 2022-06-07 23:54:43 首发,最晚于 2022-06-08 00:31:49 修改。
  23. 练习:求列表(整数列表)平衡点
    ( 3211 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/121737612
    点赞:0   踩 :0  收藏:0  打赏:0  评论:0
    本篇博文笔记
  24. 练习:银行复利计算(用 for 循环解一道初中小题)
    ( 3126 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/123854548
    点赞:0   踩 :0  收藏:0  打赏:0  评论:0
    本篇博文笔记于 2022-03-30 20:06:37 首发,最晚于 2022-04-06 18:15:16 修改。
  25. 练习:柱状图中最大矩形
    ( 3096 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/122032365
    点赞:0   踩 :0  收藏:0  打赏:0  评论:0
    本篇博文笔记
  26. 练习:电话拨号键盘的字母组合(一个缩进给我惹了麻烦)
    ( 3021 阅读)
    博文地址:https://blog.csdn.net/m0_57158496/article/details/121887995
    点赞:0   踩 :0  收藏:0  打赏:0  评论:0
    本篇博文笔记
推荐条件 阅读量突破三千
(更多热博,请点击蓝色文字跳转翻阅)

回页首


老齐漫画头像

精品文章:

来源:老齐教室


回页首

Python 入门指南【Python 3.6.3】


好文力荐:


CSDN实用技巧博文:


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

梦幻精灵_cq

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值