Python

Python

Explore our comprehensive Python domain, featuring over 800 articles tailored for developers of all skill levels. Whether you’re a beginner seeking tutorials, an expert looking for advanced techniques, or anyone in between, you’ll find valuable insights, code snippets, and practical tips. Stay updated with the latest trends, libraries, and best practices in Python programming. Dive into our extensive resources and elevate your coding skills today!

PythonF

Left Number Twice Right

A set of N numbers (separated by one or more spaces) is passed as input to the program. The program must identify the count of…
PythonF

Print Nth term in A.P

The first two terms (a1, a2) of a strictly increasing arithmetic progression (A.P) are passed as input. The program must print the Nth term…
PythonF

Anagrams Count

Two strings S1, S2 are passed as input to the program. The program must print the count of anagrams present in both the strings. Out of each…
PythonF

Remove the odd numbers

A number N is passed as  input. The program must remove all the odd digits in the passed number and display the number. If there are no…
PythonF

String Palindrome

A string S is passed as input to the program. The program must print “yes” if the string S is a palindrome and must print…
PythonF

Convert KM/HR to M/S

Speed S of a car is passed as input. It is in kilometers per hour. Write a program to convert the speed from kilometer per hour to meter per…
PythonF

Unique Alphabet Count

A string S is passed as input to the program which has only alphabets (all alphabets in lower case). The program must print the unique count…