What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

Not Generating All Results - Any Ideas?

MIKEC5000

New member
Joined
Jun 15, 2023
Messages
1
Reaction score
0
HTML Coins
0
I have the code below. It is supposed to generate 5 boxes, one for form a, form b, form c, form e and form g. then generate the results using the sizes in the <td> it is generating all the boxes but only generating results in the form A box though, can anyone help?

<!DOCTYPE html>
<html>
<head>
<style>
body {
background: url("https://lh3.googleusercontent.com/X...npB_bhLa3u1KlW2MX-0ApAKFchYIHZQ3eLWPJ1O=w2400") center/cover fixed;
}

.container {
display: flex;
justify-content: center;
}

.result-box {
width: 120px;
margin: 10px;
padding: 10px;
border: 1px solid black;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<form>
<label for="size">Size:</label>
<select id="size">
<option value="">Select A Size</option>
<option value="M2">M2</option>
<option value="M2.5">M2.5</option>
<option value="M3">M3</option>
<option value="M4">M4</option>
<option value="M5">M5</option>
<option value="M6">M6</option>
<option value="M8">M8</option>
<option value="M10">M10</option>
<option value="M12">M12</option>
<option value="M14">M14</option>
<option value="M16">M16</option>
<option value="M18">M18</option>
<option value="M20">M20</option>
<option value="M22">M22</option>
<option value="M24">M24</option>
<option value="M27">M27</option>
<option value="M30">M30</option>
<option value="M33">M33</option>
<option value="M36">M36</option>
<option value="M39">M39</option>
<option value="M42">M42</option>
<option value="M48">M48</option>
</select>
</form>
</div>
<div id="results" class="container"></div>

<script>
// Add event listener to the dropdown selection
document.getElementById("size").addEventListener("change", generateResults);

// Function to generate result boxes
function generateResults() {
// Clear any existing result boxes
var resultContainer = document.getElementById("results");
resultContainer.innerHTML = "";

// Get the selected size value
var selectedSize = document.getElementById("size").value;

// Find the matching rows in the table
// Find the matching rows in the table
var table = document.getElementById("dataTable");
var rows = table.getElementsByTagName("tr");
var matchingRows = [];
for (var i = 0; i < rows.length; i++) {
var cells = rows.getElementsByTagName("td");
if (cells.length > 0 && cells[0].innerText === selectedSize) {
var matchingCells = [cells[1], cells[2], cells[3], cells[4], cells[5]];
matchingRows.push(matchingCells);
}
}


// Create result boxes
var forms = ["A", "B", "C", "E", "G"];
for (var j = 0; j < forms.length; j++) {
var resultBox = document.createElement("div");
resultBox.className = "result-box";

var formLabel = document.createElement("p");
formLabel.innerText = "Form " + forms[j];
resultBox.appendChild(formLabel);

if (matchingRows.length > j) {
var offset = j * 2 + 1; // Calculate the offset based on the current form index
var odValue = matchingRows[j][1 + j].innerText;
var thicknessValue = matchingRows[j][2 + j].innerText;

var odParagraph = document.createElement("p");
odParagraph.innerText = "O/D: " + odValue;
resultBox.appendChild(odParagraph);

var thicknessParagraph = document.createElement("p");
thicknessParagraph.innerText = "Thickness: " + thicknessValue;
resultBox.appendChild(thicknessParagraph);
}

resultContainer.appendChild(resultBox);
}

}
</script>

<div id="results" class="container"></div>

<table id="dataTable" style="display: none;">
<tr>
<th>Size</th>
<th>Form A</th>
<th>Form B</th>
<th>Form C</th>
<th>Form E</th>
<th>Form G</th>
</tr>
<tr>
<td>M2</td>
<td>5</td>
<td>0.3</td>
<td>N/A</td>
<td>N/A</td>
<td>3</td>
<td>3</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
</tr>

<tr>
<td>M2.5</td>
<td>6.5</td>
<td>0.5</td>
<td>O/D 5</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
</tr>

<tr>
<td>M3</td>
<td>7</td>
<td>0.5</td>
<td>7</td>
<td>0.3</td>
<td>7</td>
<td>0.9</td>
<td>7</td>
<td>0.7</td>
<td>12</td>
<td>0.6</td>
</tr>

<tr>
<td>M4</td>
<td>9</td>
<td>0.8</td>
<td>N/A</td>
<td>N/A</td>
<td>10</td>
<td>0.8</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
<td>N/A</td>
</tr>

</table>
</body>
</html>
 
Hello this is Gulshan Negi
Well, I searched about it, there was some error in function, you can update you code with below one.

import random
def select_word():
words_in_computer_memory = ['magazine','stars','computer','python','organisation']
word = random.choice(words_in_computer_memory)
return word
def is_gussed(word, guessed_letter_list):
count=0
for letters in word:
if letters in guessed_letter_list:
count+=1
if count==len(word):
return True
else:
return False
def guessed_word(word, guessed_letter_list):
string=""
for key in word:
if key in guessed_letter_list:
string+=key
else:
string+="_ "
return string
def available_letters(guessed_letter_list):

string=""
count=0
s='abcdefghijklmnopqrstuvwxyz'
for letter in s:
if letter in guessed_letter_list:
count+=1
else:
string+=letter
return string
def hangman_game(word):
length=len(word)
print('''------------------WELCOME TO HANGMAN GAME---------------------------
O
/|\
/ \
''')
print("The word you have to guess is of ",length, "letters long.")
chances=2*len(word)
i=0
guessed_letter_list=[]
while (chances!=0):

if word!=guessed_word(word, guessed_letter_list):
print("You Got", chances, "Chances.")
print("Letters you can enter should be from these ",available_letters(guessed_letter_list))
guess=input("ENTER A LETTER ")
print('\n'*50)

guessInLowerCase = guess[0].lower()
if guessInLowerCase in guessed_letter_list:
print("SORRY! YOU HAVE GUSSED THIS LETTER ALREADY! ",guessed_word(word, guessed_letter_list))
elif guessInLowerCase not in word:
print(" SORRY! THE LETTER IS NOT IN WORD",guessed_word(word, guessed_letter_list))
chances-=1
else:
guessed_letter_list.append(guessInLowerCase)
print("NICE YOU GUSESSED THE RIGHT LETTER! ",guessed_word(word, guessed_letter_list))

elif word==guessed_word(word, guessed_letter_list):
print("YOU WON!")
break

else:
print('''
********************************************
YOU LOSS!!
O
/|\
/ \
******************************************''')
print('The word was',word,)

word = select_word()
hangman_game(word)

I hope it will help you.
Thanks
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back