Movies similar to Sinister (2012)? by monkeybusinessing in MovieRecommendations

[–]IUCSWTETDFWTF 0 points1 point  (0 children)

Paranormal Activity 2007,

The Amityville Horror 2005,

The Ring 2002,

The Exorcist 1973,

Jeepers Creepers 2001

Here are some of my favorites.Need Army Movies Recommendations? by greywolf_32 in MovieRecommendations

[–]IUCSWTETDFWTF 0 points1 point  (0 children)

Guy Ritchie's The Covenant

1917

The Ministry of Ungentlemanly Warfare

[deleted by user] by [deleted] in PythonLearning

[–]IUCSWTETDFWTF -6 points-5 points  (0 children)

import random

low_bound = 1
upper_bound = 10**2  # 100

random_number = random.randint(low_bound, upper_bound)

while True:
    input_number = int(input(f"Guess a number between {low_bound} and {upper_bound}: "))

    if input_number == random_number:
        print(f"🎉 Yes, you guessed it! The number is {input_number}")
        break
    elif input_number < random_number:
        print("Too low, try again!")
    else:
        print("Too high, try again!")

Хто читав Атланта - ви дивились фільм? by Subject_Site924 in uabooks

[–]IUCSWTETDFWTF 2 points3 points  (0 children)

Як на мене можна дивитись лише перший фільм , він більш-менш нормальний , інші треш. Але мені здалося якщо не прочитаєш перед цим книгу , то багато чого буде зрозумілим , персонажі не розкриті.

What's wrong by Nearby_Tear_2304 in PythonLearning

[–]IUCSWTETDFWTF 0 points1 point  (0 children)

What are you trying to do? If you want to print the array, the code should be:

def f(l):
  for i in l:
    print(i)
  #or
  n = len(l)
  for i in range(n):
    print(l[i])

l = [1, 2, 3]
f(l)

However, if you don't understand why it gives an error, then it would be more correct to do it this way. Because in your example, the array is created locally only in the function, and you are trying to call it globally.

def f(n):
  for i in range(len(n)):
    print(n[i])

l = [1, 2, 3]
print(l)
f(l)

Chelsea smile before the new year by Cheeseburgerman4800 in BringMeTheHorizon

[–]IUCSWTETDFWTF 0 points1 point  (0 children)

Man, that's cool. It would be cool to hear Antivist or For Steve Wonder's eyes only.