文件名称:Hacktoberfest:分享您最喜欢的代码段! Hacktoberfest 2019! :laptop:
文件大小:473KB
文件格式:ZIP
更新时间:2024-03-28 21:49:27
hacktoberfest hacktoberfest2019 hacktoberfest19 Python
我正在归档此存储库。 该存储库在Hacktoberfest 2020上无效。 您最喜欢的代码段 代码片段的集合,可以是从hello world到Complex Algo&DS (使用任何编程语言)的任何东西。 如何贡献 从注释为什么这是您最喜欢的代码段开始您的程序。 代码应易于阅读,并适当缩进。 例子: # This is my favorite code snippet because it has ties to the Golden Ratio. def Fibonacci(n): if n<0: print("Incorrect input") elif n==1: return 0 elif n==2: return 1 else: return Fibonacci(n