• Nov 19, 2022 •CodeCatch
0 likes • 3 views
# Input for row and column R = int(input()) C = int(input()) # Using list comprehension for input matrix = [[int(input()) for x in range (C)] for y in range(R)]
• Apr 21, 2023 •sebastianagauyao2002-61a8
0 likes • 4 views
print("hellur")
• May 31, 2023 •CodeCatch
# Prompt user for base and height base = float(input("Enter the base of the triangle: ")) height = float(input("Enter the height of the triangle: ")) # Calculate the area area = (base * height) / 2 # Display the result print("The area of the triangle is:", area)
# Deleting all even numbers from a list a = [1,2,3,4,5] del a[1::2] print(a)
• Oct 7, 2022 •KETRICK
0 likes • 5 views
x[cat_var].isnull().sum().sort_values(ascending=False)
• May 5, 2026 •CodeCatch
0 likes • 0 views
{"output":{"name":"format_final_json_response","arguments":{"output":{}}}}