text = input(“Enter a string: “).strip() # Remove leading/trailing spaces count = 0 print(len(text)) for i in range(len(text)): if text[i] == ” ” and text[i – 1] != ” “: # Count spaces between words count += 1 print(count) # If the string is not empty, add 1 to count the last word if text:…
# Taking user input as space-separated values list1_input = input(“Enter list 1 (space-separated): “).split() list2_input = input(“Enter list 2 (space-separated): “).split() # Convert input strings to integers using a loop list1 = [] for num in list1_input: list1.append(int(num)) list2 = [] for num in list2_input: list2.append(int(num)) # Sort both lists list1.sort() list2.sort() # Merge sorted…
# Taking user input as space-separated values list1_input = input(“Enter list 1 (space-separated): “).split() list2_input = input(“Enter list 2 (space-separated): “).split() # Convert input strings to integers using a loop list1 = [] for num in list1_input: list1.append(int(num)) list2 = [] for num in list2_input: list2.append(int(num)) # Sort both lists list1.sort() list2.sort() # Merge sorted…
my_list = [1, 2, 2, 3, 4, 4, 5] unique_list = [] for item in my_list: if item not in unique_list: unique_list.append(item) print(unique_list) # Output: [1, 2, 3, 4, 5]
a=10 b=20.0 c=”2.0″ print(“integer to string”) d=str(a) print(d) print(type(d)) print(“float to integer “) d=int(b) print(d) print(type(d)) print(“String to float “) d=float(c) print(d) print(type(d))
# Take input for matrix dimensions m = int(input(“Enter number of rows: “)) n = int(input(“Enter number of columns: “)) # Input first matrix print(“Enter elements for first matrix row-wise:”) A = [] for i in range(m): row = [] for j in range(n): row.append(int(input())) # Taking integer input manually A.append(row) # Input second matrix…
# Function to print multiplication table def print_table(n, upto=10): for i in range(1, upto + 1): print(f”{n} × {i} = {n * i}”) # Input from user num = int(input(“Enter a number: “)) # Print the multiplication table print_table(num)
def find_largest(a, b, c): return max(a, b, c) # Input from user num1 = float(input(“Enter first number: “)) num2 = float(input(“Enter second number: “)) num3 = float(input(“Enter third number: “)) # Find and print the largest number largest = find_largest(num1, num2, num3) print(“The largest number is:”, largest)
import sys print(“Python version: “, sys.version)
# defining a function to calculate LCM def calculate_lcm(x, y): # selecting the greater number if x > y: greater = x else: greater = y print(greater) while(True): #infinite loop if((greater % x == 0) and (greater % y == 0)): lcm = greater break greater += 1 print(greater) return lcm # taking input from…