دانلود سورس کد پنل ورودی

دانلود سورس کد پنل ورودی مدیریت توسط تیم برنامه نویسان برای دانلود

به ادامه مطالب بروید.

ادامه نوشته

دانلود سورس کد ورودی چت روم

دانلود سورس کد ورودی چت روم ساخته شده توسط تیم برنامه نویسی program-ers

برای دانلود به ادامه مطالب بروید.

ادامه نوشته

سورس کد ماشین حساب html

دانلود سورس کد ماشین حساب ساخته شده توسط تیم برنامه نویسی program-ers

برای دانلود به ادامه مطلب بروید.

ادامه نوشته

سورس بازی حدس زدن کلمات در پایتون

سورس بازی حدس زدن کلمات

import random

Plangs = ("python", "php", "javascript", "c", "perl", "c++", "java", "ruby", "c#", "visual basic", "fortran")

answer = random.choice(Plangs)

correct = answer

rumble = ""

while answer:
    position = random.randrange(len(answer))
    rumble += answer[position]
    answer = answer[:position] + answer[(position + 1):]

print("The Word Is:", rumble)

guess = input("Guess This Programming Language:")
guess = guess.lower()

while (guess != correct) or (guess == ""):
    print("That is not the correct answer")
    guess = input("Guess This Programming Language:")
    guess = guess.lower()

if guess == correct:
    print("Congratulation You Win!")   

input("\n\n Press enter to exit")

برای دانلود به ادامه مطلب بروید.

ادامه نوشته