kopia lustrzana https://github.com/villares/sketch-a-day
11 wiersze
347 B
Python
11 wiersze
347 B
Python
def print_text_for_readme(name, output):
|
|
""" prints text in the console to add to project README.md """
|
|
println(
|
|
"""
|
|

|
|
|
|
{1}: [code](https://github.com/villares/sketch-a-day/tree/master/{0}) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)]
|
|
|
|
""".format(name, name[1:], output)
|
|
)
|