Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/loneicewolf/basic-coding
a repo I make for my friend(s)!
https://github.com/loneicewolf/basic-coding
json postman python
Last synced: about 2 months ago
JSON representation
a repo I make for my friend(s)!
- Host: GitHub
- URL: https://github.com/loneicewolf/basic-coding
- Owner: loneicewolf
- Created: 2024-06-15T19:45:11.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-15T20:19:38.000Z (8 months ago)
- Last Synced: 2024-11-06T20:09:05.128Z (3 months ago)
- Topics: json, postman, python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basic-coding
this is for my friends! so I Will simplify things, to be somewhat inaccurate but more readable. `^_^`## `Estimated Time Left:` ~a few days / 4 days
TODO - `BASICS OF`
- [ ] `POSTMAN`
- [ ] `PYTHON`
- [ ] `JSON`
- [ ] `HTML`POSTMAN
TODO
PYTHON
```py
# ==================== #
## PRINT TEXT
# print text! (all of the below prints out "hello")
print("hello")a="hello"
print(a)# ==================== #
# ==================== #
## LOOPS
# prints 0,1,2
for i in range(0,3):
print(i)# same, but all in one line
for i in range(0,3): print(i)## range
# basically just defines a 'range',
# and the "arguments" (the input-dots of range(...)) is basically the START and END.# for i in range(0,10): print(i)
# prints out 0 to 9
## (why not 0 to 10? cuz in computing terms 0 is a number,
## so "0 is one", "1 is two"(because we 'started' at 0)## this is also called 'zero index based' where 0 is actually
## seen as "1" (a bit difficult to explain but, 0,1,2 is "equivalent"
## or "the same" as 1,2,3) <- generally speaking
# ==================== ## ==================== #
# ==================== #
```JSON
TODO
HTML
TODO
# LEGEND
Click to expand a LEGEND list- defines
- aka includes- python(python2, python3, ...)
- A programming language
- type: scripting language