快到情人节了,作为技术宅男,杜老师教大家如何通过 Python 给女神表白。其实 Python 可以做很多事情,通过其强大的库能实现各种效果,今天杜老师准备了一段很简单的代码,感兴趣的小伙伴可以试一下!表白代码12345importtimewords= input('Please input the words you want to say!:')foritem in words.split():print('\n'.join([''.join([(item[(x-y) % len(item)] if ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3<=0else ' ') for x in range(-30,30)]) for y in range(12, -12, -1)]))time.sleep(1.5);注意:不需要安装任何库;仅支持英文字母的输入;单词间需要加空格;单词越多,持续效果越久!运行效果点击播放效果:
...
继续阅读
(6)