اذهب إلى المحتوى

السؤال

نشر
import random

print("welcom to the coin Guessing Game")
print("choose a method to toss the coin:")
print("1. using random.random()")
print("2. using random.randint()")
choice = input("Enter your choie (1 or 2): ")
#random.randint
if choice=="1":
  random_1 = random.random()
  if random_1>=0.5:
    computer_result="tails"
  else:
    computer_result="heads"
elif choice=="2":
  if random.randint(0 , 1) == 0:
    computer_result="tails"
  else:
    computer_result="heads"
else:
  print("invalid choice :please select 1 or 2")

user_choice= input("Enter your guess (Heads or atails) ")
if user_choice.lower==computer_result.lower():
  print("congratulation . you won")
else:
  print("sorry you lost")


 

Recommended Posts

  • 0
نشر

الكود قريب من الصحيح، ولكن هناك مشكلة صغيرة في الشرط الذي يقارن فيه اختيار المستخدم بنتيجة الكمبيوتر، ويجب عليك استخدام الدالة lower() لتحويل الحروف الصغيرة إلى الأحرف الصغيرة قبل مقارنتهم.

أي يجب أن يكون الشرط كالتالي:

if user_choice.lower() == computer_result.lower():

أيضًا، يجب أن تتحقق من أن القيم المدخلة من قبل المستخدم ("Heads" أو "Tails") تكون مكتوبة بشكل صحيح، لذلك عليك تعديل السطر الخاص بإدخال المستخدم كالتالي:

user_choice = input("Enter your guess (Heads or Tails): ").lower()

وبهذا الشكل، ستتمكن من تصحيح المشكلة في الشرط وضمان أنه سيتم مقارنة الإجابة بشكل صحيح بغض النظر عن الأحرف الكبيرة أو الصغيرة.

import random

print("Welcome to the Coin Guessing Game")
print("Choose a method to toss the coin:")
print("1. using random.random()")
print("2. using random.randint()")
choice = input("Enter your choice (1 or 2): ")

if choice == "1":
    random_1 = random.random()
    if random_1 >= 0.5:
        computer_result = "Tails"
    else:
        computer_result = "Heads"
elif choice == "2":
    if random.randint(0, 1) == 0:
        computer_result = "Tails"
    else:
        computer_result = "Heads"
else:
    print("Invalid choice: please select 1 or 2")
    exit()

user_choice = input("Enter your guess (Heads or Tails): ").capitalize()

if user_choice == computer_result:
    print("Congratulations, you won!")
else:
    print("Sorry, you lost. The coin landed on", computer_result)

 

  • 0
نشر

المشكلة في الكود تكمن في الطريقة التي تقوم بها بمقارنة اختيار المستخدم بنتيجة الكمبيوتر. يجب استخدام

user_choice.lower()

بدلاً من

user_choice.lower

للقيام بمقارنة السلاسل بشكل صحيح. يجب أن يتم استدعاء الدالة

lower()

لتحويل السلسلة إلى حروف صغيرة ومن ثم مقارنتها بالنتيجة العشوائية للكمبيوتر. 

import random

print("Welcome to the Coin Guessing Game")
print("Choose a method to toss the coin:")
print("1. using random.random()")
print("2. using random.randint()")
choice = input("Enter your choice (1 or 2): ")

# Random toss
if choice == "1":
    random_1 = random.random()
    if random_1 >= 0.5:
        computer_result = "tails"
    else:
        computer_result = "heads"
elif choice == "2":
    if random.randint(0, 1) == 0:
        computer_result = "tails"
    else:
        computer_result = "heads"
else:
    print("Invalid choice: please select 1 or 2")

user_choice = input("Enter your guess (Heads or Tails): ")

# Correct the comparison here, use lower() to make it case-insensitive
if user_choice.lower() == computer_result.lower():
    print("Congratulations, you won!")
else:
    print("Sorry, you lost.")

 

  • 0
نشر

بالنسبة لمشكلتك في مقارنة النتيجة في لعبة التخمين على العملة باستخدام كود بايثون، قد تحتاج إلى التأكد من أن المتغيرات التي تقارن بينها تحتوي على نفس النوع من البيانات (string أو integer). تأكد أيضًا من أن التوزيع العشوائي لنتائج التخمين يتم بشكل صحيح. أحيانًا، المشكلة قد تكون في طريقة كتابة الشروط أو التحقق من القيم المتوقعة مقابل الناتج. بالمناسبة، إذا كنت مهتمًا بالألعاب والتحديات المثيرة، أوصي بتفقد هذا الرابط: https://melbet.com/fa/line/football حيث يمكنك تجربة حظك في الألعاب بطريقة مسلية. بالتوفيق في حل مشكلتك!

  • 0
نشر (معدل)

*إذا كنت من محبي الألعاب وتبحث عن تجربة جديدة، فإن منصة كازينو 1win توفر لك هذا وأكثر. تسجيل الدخول هنا بسيط وسهل، ومن ثم يمكنك الاستمتاع بكل المزايا المتاحة. جرب الموقع واستمتع بالألعاب الممتعة من خلال رابط/ وستكتشف الكثير من الألعاب التي تضمن لك التسلية. أنصح الجميع بتجربة تنزيل تطبيق 1win فهو يقدم خيارات رائعة لكل محبي الألعاب على الأجهزة المحمولة.*

تم التعديل في بواسطة Alice Chizda

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...