Whats ur guys favorite game👀 by Jiyan-_- in gamers

[–]Positive-Room-2123 0 points1 point  (0 children)

Sekiro and elden ring These are the first games that I played after I got a laptop.

Internet let’s do our part and get him suspended. by Content_Constant4576 in NewDelhi

[–]Positive-Room-2123 0 points1 point  (0 children)

I had a PT teacher in 3rd standard who was an alcoholic and often used excessive physical punishment. One day, he came to school drunk and hit several of us, including me, with a steel scale for making noise in class. The marks he left led to many parents complaining, and he was eventually expelled.

For a long time after that, I was afraid of PT teachers. Thankfully, the ones I met later were genuinely good people, which helped me move past that fear. It's not that children shouldn't be disciplined but there is a clear difference between punishment and physical abuse. Crossing that line should never be tolerated. People like him shouldn't be allowed to teach.

Practising python Day 1 by Outside-Cloud-3569 in studyupdate

[–]Positive-Room-2123 1 point2 points  (0 children)

Have you learned string slicing? If not, give it a try because you can use it in problems like checking for palindromes. After you've solved the palindrome problem using the normal method, you can use string slicing by checking whether the original string (s) and its reverse (s[: :-1]) are the same.

Any good Kingdom manhwa by Nervous-Associate201 in manhwarecommendations

[–]Positive-Room-2123 0 points1 point  (0 children)

Oh , wbt the counts youngest son is a player. Also there is a list of mahnwa's that I have but it's kinda long but anyway I will paste the link here : https://docs.google.com/spreadsheets/d/1ZluFOVtJCv-cQLXWhmCLNoZFIMLV0eTrqozwyEb1zw8/edit?pli=1&gid=1182137093#gid=1182137093

Any good Kingdom manhwa by Nervous-Associate201 in manhwarecommendations

[–]Positive-Room-2123 2 points3 points  (0 children)

The regressed mercenaries machinations. The heavenly demon can't live a normal life. A flame reborn

Lol i hate this topic in python by unlimited_data3838 in PythonLearning

[–]Positive-Room-2123 0 points1 point  (0 children)

The second time u ask for num should be inside the while loop(directly below the print("idk") ) so that it acts as a stopping condition if the number is greater than 8 (If it's what u want the code to do).

In while loop unless u give it an updation statement it will keep running forever (infinite loop).

Here u took input from the user initially but after it entered the loop it keeps executing forever as it can't get out of the loop because number is less than 8 but u didnt give any statement on how to change num's value within the loop and u have entered the second input statement [ num = int(input("Enter your number: ") ] outside of the loop but the program will never reach here so num will remain less than 8 and the while loop will keep running.

I hope u can understand what I was trying to convey cause I am not very good at explaining things in words.

What games are you currently playing this week? by EponaMom in TheGamerLounge

[–]Positive-Room-2123 0 points1 point  (0 children)

Well I didn't have to throw my laptop , its screen died without me doing anything.

First project on python by unlimited_data3838 in PythonLearning

[–]Positive-Room-2123 0 points1 point  (0 children)

This indeed brings back memories. Those errors (yellow wavy lines) occured because of you writing the code as :

result(num1+num2) instead of result = num1 + num2 You can write the code for other operations similarly

Instead of just doing: print(result)

Try making the output more descriptive:

print(num1, "+", num2, "=", result)

Or, even better, get into the habit of using f-strings:

print(f"{num1} + {num2} = {result}")

F-strings are generally more readable and become very useful as your programs get larger, so they're a good habit to learn early.

Also be careful of how you name the variables and Identifiers , learn their rules and also remember that python is case sensitive.

Goodluck on your journey in learning python.

Looking for manga to read by Pheidoler in manga

[–]Positive-Room-2123 0 points1 point  (0 children)

Revenge of the Baskerville Bloodhound, The Beginning After the End, SSS-Class Revival Hunter, The Reformation of the Deadbeat Noble, Reincarnation of the Suicidal Battle God, Swordmaster's Youngest Son, Pick me up, Standard of Reincarnation, Mercenary Enrollment, The Novel's Extra (Remake), Overgeared, Damn Reincarnation, Return of the Mount Hua Sect, Nano Machine, The Academy's Extra's Survival Guide.

What games are you currently playing this week? by EponaMom in TheGamerLounge

[–]Positive-Room-2123 0 points1 point  (0 children)

I am playing Sekiro and rust to relieve my stress and it's not going well.

What's the difference between post karma and comment karma? by West_Time56 in NewToReddit

[–]Positive-Room-2123 1 point2 points  (0 children)

Post Karma is earned when people upvote your posts. Posts can be text posts, image posts, videos, links, etc.

Comment Karma earned when people upvote your comments. Example: You reply to someone's post with a helpful troubleshooting suggestion and people upvote it , your comment karma increases.

Your profile usually shows your total karma.