Poll Results
Please login to vote and see the results.
Participate in Poll, Choose Your Answer.
What is your greatest weakness in english? You can choose multiple answers.
Sorry, you do not have permission to send message.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge. All that you need is create an account. Join our community. Create your feed, follow your desired categories and users and keep updated.Besides gaining reputation with your questions and answers, you receive badges for being especially helpful. Badges appear on your profile page, questions & answers.Use your eared points to cread freely sticky questions and get answers rapidly.
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
Please login to vote and see the results.
What is your greatest weakness in english? You can choose multiple answers.
Hi I have a variables that is declared outsides fucntions. How can I use and change these variables inside function usign Python? thank you
Hello this code may help you: def flatten_list(original_List): flat_list = [] for sub_list in original_List: for element in sub_list: flat_list.append(element) return flat_list #test original_List=[['a', 'b', 'c', 'd','e'], ['f', 'g', 'h', 'i'], ['j', 'k', 'l'], ['m', 'n', 'o']] print('original listRead more
Please use this code: $first_date = new DateTime("2022-01-01"); $second_date = new DateTime("2023-02-02"); $difference = $first_date->diff($second_date); echo "<difference> = " . $difference->y . " years, " . $difference->m." months, ".$difference->d." days " . "<difference in dRead more
Please use this code:
[crayon-6764228873481760769083/]
It works as you expect
Hi everyone, I am new in PHP. I have this function which convert all alphabetic characters to uppercase: Read more
Hi, This is the syntax to concatenate strings: $text1 = "hello"; $text2 = "world"; $text = $text1 . ' ' . $text2; For your code, use this: function UppercaseText($text_list) { $GlobalText = ""; $TableSize = sizeof($text_list);; for ($i = 0; $i < $TableSize; $i++) { $BigText[] = strtoupper($text_lRead more
Hi,
This is the syntax to concatenate strings:
[crayon-6764228873633786107768/]
For your code, use this:
[crayon-6764228873635517715709/]
Have a good day
Hi Could please tell me how to add or update SEO Focus keyphrase programmatically? I used this code but it doesn’t work: Read more
Hi, I think Yoast SEO removed metakeywords. Please see this aricle : Meta keywords Why we don't use them - and neither should you use this key instead : _yoast_wpseo_focuskw You can update it like any post meta. This is the syntax: //the value of the focus key word $myFocusKeyword = "focus keyword eRead more
Hi,
I think Yoast SEO removed metakeywords. Please see this aricle :
Meta keywords Why we don’t use them – and neither should you
use this key instead :
_yoast_wpseo_focuskw
You can update it like any post meta. This is the syntax:
[crayon-67642288737f0640594875/]
I tested it and it works fine.
regards
See lessHi Everyone! I use a s7-1500 controller. I use MB_CLIENT function to read data from an other PLC. Everything work fine until I make change in my project and download to the PLC. I have error 80A3 and impossible to acknowledge until I make a stop/Run of the plc. Anyone can help me? Best Regards,
Hi Maesa, If you use instances declared in a FB function. Try to use a global instance of MB_clien like this: use a global DB to declare the "ModbusDataconnectParamClient" structure. This will fix your problem and when you download the project, it will not cause problem for MB_client function. hopeRead more
Hi Maesa,
If you use instances declared in a FB function.
Try to use a global instance of MB_clien like this:
use a global DB to declare the “ModbusDataconnectParamClient” structure.
This will fix your problem and when you download the project, it will not cause problem for MB_client function.
hope this will help you
See lessThis website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.
This website uses Google Analytics to collect anonymous information such as the number of visitors to the site, and the most popular pages.
Keeping this cookie enabled helps us to improve our website.
Please enable Strictly Necessary Cookies first so that we can save your preferences!
Follow this example to create a variable outside functions, and use it inside the functions: MyVariable = 99 #this is a global variable def changeAndPrint_GlobalVariable(): global MyVariable #use global variable in this function with "global" keyword print('Global variable "MyVariable" before changeRead more
Follow this example to create a variable outside functions, and use it inside the functions:
See less[crayon-6764228872f32156786358/]
This code will print:
[crayon-6764228872f37599170713/]