Menu Close

Category: Python

LCD Monitors are good for Gaming

LCD monitors, specifically those with modern technologies such as IPS (In-Plane Switching) or TN (Twisted Nematic) panels, can be good choices for gaming. However, the…

Bubble Sort… – FcukTheCode

Parameter Description Stable Yes In place Yes Best case complexity O(n) Average case complexity O(n^2) Worst case complexity O(1) The BubbleSort compares each successive pair…

PlayStation 5 ReStock …fcukthecode

Experience lightning fast loading with an ultra-high speed SSD, deeper immersion with support for haptic feedback, adaptive triggers and 3D Audio, and an all-new generation…

Celsius to Fahrenheit [Python] …ftc

Write a program to Convert the temperature from Celsius to Fahrenheit. INPUT_1:Celsius:  0 OUTPUT:Celsius to Fahrenheit:  32.0 F INPUT_2:Celsius:  30 OUTPUT:Celsius to Fahrenheit:  86.0 F…

OS Module (os.path) Python-fcukthecode

This module implements some useful functions on pathnames. The path parameters can be passed as either strings, or bytes. Applications are encouraged to represent file…

Searching Linear in Python…FTC

Write a program to search a element linearly. INPUT_1:Enter the Elements:  5  2  3  4  10  40Element to Search:  3 OUTPUT:Element is present at index …

Map Module in Python …FcuktheCode

The map function is the simplest one among Python built-ins used for functional programming. map() applies a specified function to each element in an iterable…