2026-07-23
Page Title: Misc - Programming Python
Last Modified: 2026-06-29 12:44:40
Current Date: 2026-07-23 11:14:23 UTC
Python is a high-level, general-purpose programming language that emphasizes code readability, simplicity, and ease-of-writing with the use of significant indentation, "plain English" naming, an extensive standard library. Python supports multiple programming paradigms but with an emphasis on object-oriented programming and dynamic typing.
Guido van Rossum began working on Python in the late 1980s as a successor to the ABC programming language and since 2003 Python has consistently ranked among the top ten most popular programming languages in the TIOBE Programming Community Index
These are my Programming Forgets.
Due to the medication I take I do struggle at times to remember or differentiate between programming languages formats and their language comprehensions so I just place these simple steps here as code examples to help me remember.
Due to the medication I take I do struggle at times to remember or differentiate between programming languages formats and their language comprehensions so I just place these simple steps here as code examples to help me remember.
a = 200
b = 33
if b > a:
print("b is greater than a")
elif a == b:
print("a and b are equal")
else:
print("a is greater than b")
for x in range(6):
print(x)
for x in range(6):
print(x)
if x == 3:
break
for x in range(6):
print(x)
if x == 3:
print(f'Hello, x is {x}')
continue
x = 0
while x < 6:
print(x)
x += 1
x = 0
while x < 6:
print(x)
if x == 3:
break
x += 1
x = 0
while x < 6:
x += 1
print(x)
if x == 3:
print(f'Hello, x is {x}')
continue
Copyright © 2002 to 2026