I need to acess a variable in list for example var1=[Orange,Banana] var2=[Apple,Pear] var3=[Banana,Pear] var4=[Grapes,Orange] var5=[Orange,Apple] user_fruit =
I want to use and change global variables from other components, my files structure looks like this... enter image description here I have my variables in globa
class makequestions(QMainWindow): def __init__(self): super(makequestions, self).__init__() uic.loadUi("Addquestions.ui", self) self
I am inside function #1 and triggering function #2. Function #2 has a variable that I want to get back into function #1 and use it. My output ends up being:
I use package.json variables like this in NPM scripts: // package.json { "version": "0.12.1", "scripts": { "get-version": "echo %npm_package_version%"
We're working on converting our Classic Azure Pipelines to YAML Pipelines. One thing that is not clear is how to ensure that two different variable groups with
Let's suppose we have a neural nets with three layers : Inputs > Hidden > Outputs and consider that the weigths between the Hidden and Outputs layers are
my previous attempts to declare a variable always failed. Task: In the table mybb->users there is the column verified. This column has either a "1 or a "0" (
So I am trying to make a save file system thing, and it creates a file with your username, but when you log in it checks the user saves file to see if theres a
I am working on transfer learning for an image classification task. The training generator is as follows: train_generator = train_datagen.flow_from_directory(
What is the scope of variables in javascript? Do they have the same scope inside as opposed to outside a function? Or does it even matter? Also, where are the v
Hello this is a little complicated question. I hope you can understand what I'm trying to ask. Let's say I have: newvar = hoavyeph8 There is an 'e' in this var
I have a method but doesn't have a parameter, for example def goodbye puts "" puts "Thank you, #{name} for using our service." puts "Good luck with
I am probably missing something simple. I have the dictionary in vars.yml deploy_env: dev: schemas: year1: - main - custom ye
I have got multiple javascript files and I have defined some global variable in a file which loads before the others. As a consequence all of the files loaded a
Newbie to unix/shell/bash. I have a file name CellSite whose 6th line is as below: btsName = "RV74XC038", I want to extract the string from 6th line that i
I am lost on printing a character on the same line. For example card = "--Diamonds--" Output needed: --Diamonds-- --Diamonds-- --Diamonds-- --Diamonds-- -
I have many JMeter scripts that are testing different scenarios and I want to create a configuration file for some common values across my scripts, so I will no
We have a master pipeline, which is responsible for triggering pipelines from multiple projects and performing some steps. I want to pass a file from first pipe
My question is what does it change to declare a constant above or bellow a React functional component (or a class component also) ? for example what is the diff