fa
Feedback
Leetcode with dani

Leetcode with dani

رفتن به کانال در Telegram

Join us and let's tackle leet code questions together: improve your problem-solving skills Preparing for coding interviews learning new algorithms and data structures connect with other coding enthusiasts

نمایش بیشتر
1 257
مشترکین
-124 ساعت
-17 روز
-1130 روز
آرشیو پست ها
print(total) is out of the for loop

total = 0 for i in range(1, 6): total += i print(total) )
Anonymous voting

x = 10 y = x + 5 x = "Hello" print(y)
Anonymous voting

"Tricky Question" num1 = 2 num2 =input("Enter second number: ") assume the user entred 3 print(num1+num2)
Anonymous voting

"Tricky Question" num1 = 2 num2 = input("Enter second number: ") #assume the user insert 3 print(num1+num2)
Anonymous voting

"Tricky Question" num1 = 2 num2 = int(input("Enter second number: ") )#assume the user entred 3 print(num1+num2)
Anonymous voting

A tricky question num1 = 2 num2 = int(input("Enter second number: "))#assume the user entred 3 print(num1+num2)
Anonymous voting

Example of the importance of Variable
# Define variables to store length and width
length = 5
width = 3

# Calculate the area using the formula (length * width)
area = length * width

# Print the calculated area
print("The area of the rectangle is:", area)

What data type is the user input returned by input() by default?
Anonymous voting

What function is used to get user input in Python?
Anonymous voting

Repost from Leetcode with dani
How to get input from the user Python : 1. Getting User Input: To get input from the user, you can use the input() function in Python. It reads a line of text entered by the user and returns it as a string. Example:
python
   name = input("Enter your name: ")
   print("Hello, " + name)
   

2. Converting Input to Other Data Types: By default, input() returns the user input as a string. If you need to convert it to other data types like integer or float, you can use type casting. Example:
python
   age = int(input("Enter your age: "))
   height = float(input("Enter your height (in meters): "))
   

3. Prompting for Multiple Inputs: You can prompt for multiple inputs by calling input() multiple times and storing the results in different variables. Example:
python
   num1 = int(input("Enter first number: "))
   num2 = int(input("Enter second number: "))
   
   sum = num1 + num2
   print("Sum:", sum)
   

  
Let me know if you have any further questions.

day = "Thursday" if day == "Saturday" or day == "Sunday": print("It's the weekend!") else: if day == "Monday": print("Back to the grind...") else: print("It's a weekday.")
Anonymous voting

name = "Alice" if name == "Bob": print("Hello Bob!") else: print("You are not Bob")
Anonymous voting

1. What is the purpose of if-else statements in Python?
Anonymous voting

after reading the above lecture make sure to answer the following polls

Tutorial: Python If-Else Condition Basics 1. Introduction to If-Else Conditions: - In programming, if-else conditions are used to make decisions based on certain conditions. - If a condition is true, a specific block of code is executed. Otherwise, an alternative block of code is executed. 2. Syntax of If-Else Statements: - The basic syntax of an if-else statement in Python is as follows:
if condition:
    # code to be executed if the condition is true
else:
    # code to be executed if the condition is false


3. Simple If-Else Statements: - Let's start with a simple example to understand the concept:
age = 18

if age >= 18:
    print("You are eligible to vote!")
else:
    print("You are not eligible to vote yet.")


4. Comparison Operators: - Comparison operators are used to compare values in if-else conditions. Here are some commonly used comparison operators: - > : Greater than - < : Less than - == : Equal to - != : Not equal to - >= : Greater than or equal to - <= : Less than or equal to 5. Logical Operators: - Logical operators are used to combine multiple conditions in if-else statements. Here are the commonly used logical operators: - and : Returns True if both conditions are true - or : Returns True if at least one condition is true - not : Returns the opposite of the condition 6. Nested If-Else Statements: - Nested if-else statements allow you to have multiple levels of conditions. Here's an example:
age = 25
income = 50000

if age >= 18:
    if income >= 30000:
        print("You are eligible for a loan!")
    else:
        print("You are not eligible for a loan.")
else:
    print("You must be at least 18 years old to apply for a loan.")


7. Elif (Else If) Statements: - The elif statement allows you to check multiple conditions in a single if-else block. Here's an example:
score = 85

if score >= 90:
    print("You got an A!")
elif score >= 80:
    print("You got a B!")
elif score >= 70:
    print("You got a C!")
else:
    print("You need to improve your score.")
. This tutorial provides a basic understanding of if-else conditions in Python. Practice writing if-else statements and try solving different problems to strengthen your skills.

In Python, data types are used to classify and represent different types of data that can be stored and manipulated within a program. Python is a dynamically typed language, which means that the data type of a variable is determined at runtime based on the value assigned to it. Here are some commonly used data types in Python: 1. Numeric Types: - int: Represents integer values, such as 1, -5, or 1000. - float: Represents floating-point numbers with decimal places, such as 3.14 or -2.5. - complex: Represents complex numbers in the form of a + bj, where a and b are real numbers and j is the imaginary unit. 2. Sequence Types: - str: Represents a sequence of characters, such as "Hello, World!" or "Python". - list: Represents an ordered collection of items, enclosed in square brackets (), and separated by commas. Lists can contain elements of different data types. - tuple: Similar to lists, but enclosed in parentheses (()) and are immutable, meaning their values cannot be changed once assigned. 3. Mapping Type: - dict: Represents a collection of key-value pairs enclosed in curly braces ({}). Each key-value pair is separated by a colon (:), and keys must be unique. 4. Set Types: - set: Represents an unordered collection of unique elements, enclosed in curly braces ({}). - frozenset: Similar to sets, but immutable. 5. Boolean Type: - bool: Represents a boolean value, which can be either True or False. 6. None Type: - None: Represents the absence of a value or a null value. Python also provides the ability to convert between different data types using built-in functions like int(), float(), str(), etc. Understanding and utilizing the appropriate data types in Python is crucial for performing various operations and ensuring the correctness and efficiency of your code.

Repost from Leetcode with dani
Eric_Matthes,_Python_Crash_Course_A_Hands_On,_Project_Based_Introduction.pdf6.69 MB

Here is a book for you who have been asking.

SHARE THIS TO YOUR FRIENDS!!!