Last active
November 15, 2021 14:54
-
-
Save pratik-choudhari/6f1da200bd8d145545098cd90f0efe13 to your computer and use it in GitHub Desktop.
pythonji turtle code to create a square
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import turtle as 🐢 | |
| for _ in range(4): | |
| 🐢.forward(100) | |
| 🐢.left(90) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment