Programming Tutorials

Latest

 thumbnail

How to use while not in Python

April 13, 2021

A while not statement in Python loops infinitely while the value of a condition returns false. To demonstrate this,...

 thumbnail

How to Remove a Trailing Newline in Python

April 13, 2021

To remove a trailing newline (\n) on a string in Python, use the rstrip() function from the str package like this: ...

 thumbnail

How to Reverse a Range in Python

April 10, 2021

To create a reverse range in Python pass a negative value as the third argument of the range() function. This value is t...

 thumbnail

How to use the XOR operator in Python

April 07, 2021

XOR (exclusive or) is a bitwise operator that compares the binary representation of two numbers. In Python, the XOR...

 thumbnail

How to use while True in Python

April 07, 2021

while True in Python executes a loop infinitely until a break statement is run when a condition is met. To demonstr...

 thumbnail

How to Divide in Python

April 01, 2021
 thumbnail

Get MIME Type with PHP

March 27, 2021