C programming language provides arrays as a data structure to store a fixed-size collection of elements of the same type. An array stores elements in contiguous memory locations. Individual elements in an array can be accessed using an index. Common array operations in C include declaration, initialization, accessing and modifying individual elements, and passing arrays to functions.
Team Emertxe's document provides an overview of functions in C, including:
1. Functions allow code reuse, modularity, and abstraction. They define an activity with inputs, operations, and outputs.
2. Functions are defined with a return type, name, and parameters. They are called by name with arguments. Functions can return values or ignore returned values.
3. Parameters can be passed by value or by reference. Pass by reference allows changing the original argument. Arrays can be passed to functions.
4. Recursive functions call themselves to break down problems. Function pointers allow functions to be called indirectly. Variadic functions accept variable arguments.
5. Common pitfalls include
C programming language allows for the declaration of arrays, which can store a fixed number of elements of the same data type. Arrays provide an efficient way to store and access related data sequentially in memory. Individual elements in an array are accessed via an index, and multi-dimensional arrays can model tables of data with multiple indices to access each element.
The document discusses user-defined functions in Python. It provides examples of different types of functions: default functions without parameters, parameterized functions that accept arguments, and functions that return values. It demonstrates how to define functions using the def keyword and call functions. The examples show functions to print messages, calculate mathematical operations based on user input, check if a number is even or odd, and display sequences of numbers in different patterns using loops. Finally, it provides an example of a program that uses multiple functions and user input to perform mathematical operations.
Functions allow programmers to organize code into reusable blocks to perform related actions. There are three types of functions: built-in functions, modules, and user-defined functions. Built-in functions like int(), float(), str(), and abs() are predefined to perform common tasks. Modules like the math module provide additional mathematical functions like ceil(), floor(), pow(), sqrt(), and trigonometric functions. User-defined functions are created by programmers to customize functionality.
The document discusses various operators in Python including assignment, comparison, logical, identity, and membership operators. It provides examples of how each operator works and the output. Specifically, it explains that assignment operators are used to assign values to variables using shortcuts like +=, -=, etc. Comparison operators compare values and return True or False. Logical operators combine conditional statements using and, or, and not. Identity operators compare the memory location of objects using is and is not. Membership operators test if a value is present in a sequence using in and not in.
This document discusses Python programming concepts such as data types, variables, expressions, statements, comments, and modules. It provides examples and explanations of:
- Python's history and uses as an interpreted, interactive, object-oriented language.
- Core data types like integers, floats, booleans, strings, and lists.
- Variable naming rules and local vs. global variables.
- Expressions, operators, and precedence.
- Comments and multiline statements.
- Modules as files containing reusable Python code.
An array is a collection of similar data types stored under a common name. Arrays can be one-dimensional, two-dimensional, or multi-dimensional. Elements in an array are stored in contiguous memory locations. Arrays allow multiple variables of the same type to be manipulated together using a single name. Common operations on arrays include sorting elements, performing matrix operations, and CPU scheduling.
This document discusses arrays in the C programming language. It begins by defining an array as a collection of elements of the same data type. It then covers key topics such as declaring and initializing one-dimensional and multi-dimensional arrays, accessing array elements using indexes, and performing input and output operations on arrays. Examples are provided to demonstrate how to declare, initialize, read from, and print arrays. The document serves as an introduction to working with arrays in C.
This document provides an overview of C programming basics including character sets, tokens, keywords, variables, data types, and control statements in C language. Some key points include:
- The C character set includes lowercase/uppercase letters, digits, special characters, whitespace, and escape sequences.
- Tokens in C include operators, special symbols, string constants, identifiers, and keywords. There are 32 reserved keywords that should be in lowercase.
- Variables are named locations in memory that hold values. They are declared with a data type and initialized by assigning a value.
- C has primary data types like int, float, char, and double. Derived types include arrays, pointers, unions, structures,
The document discusses arrays in C programming. It defines an array as a collection of elements of the same type stored in contiguous memory locations that can be accessed using an index. One-dimensional arrays store elements in a single list, while two-dimensional arrays arrange elements in a table with rows and columns. The document provides examples of declaring, initializing, and accessing elements of one-dimensional and two-dimensional arrays.
This document discusses data types and variables in Python. It explains that a variable is a name that refers to a memory location used to store values. The main data types in Python are numbers, strings, lists, tuples, and dictionaries. It provides examples of declaring and initializing different types of variables, including integers, floats, characters, and strings. Methods for assigning values, displaying values, and accepting user input are also demonstrated. The document also discusses type conversion using functions like int(), float(), and eval() when accepting user input.
function, storage class and array and stringsRai University
The document discusses one-dimensional arrays in C programming. It defines arrays, explains how to declare and initialize them, and provides examples of accessing array elements. It also discusses reading and printing arrays, and summarizes common string handling functions in C like strcat(), strcmp(), and strcpy().
This document discusses how different C data types are stored in memory. It describes the basic integer and floating point types, including their storage sizes and value ranges. It also covers void, enumerated, pointer, array, structure, and union types. For integers, it provides the memory representations of char, both signed and unsigned. It explains the memory layout of a C program, including the text, data, stack, and heap segments. Finally, it briefly discusses big and little endian formats for multibyte data storage.
This document discusses different types of operators in Python including arithmetic, comparison, assignment, logical, membership, and identity operators. It provides examples of using arithmetic operators like addition, subtraction, multiplication, division, floor division, exponentiation, and modulus on variables. It also covers operator precedence and use of operators with strings.
The document discusses Python input and output functions. It describes how the input() function allows user input and converts the input to a string by default. The print() function outputs data to the screen and allows formatting of output. The document also discusses importing modules to reuse code and functions from other files.
1) The document discusses various Python flow control statements including if, if-else, nested if-else, and elif statements with examples of using these to check conditions and execute code blocks accordingly.
2) Examples include programs to check number comparisons, even/odd numbers, positive/negative numbers, and using nested if-else for multi-level checks like checking triangle validity.
3) The last few sections discuss using if-else statements to classify triangles as equilateral, isosceles, or scalene and to check if a number is positive, negative, or zero.
The document discusses arrays, strings, and pointers in C programming. It defines arrays as sequential collections of variables of the same data type that can be accessed using an index. Strings are stored in character arrays terminated by a null character. Pointers store the address of a variable in memory and can be used to access and modify that variable. Examples are provided of declaring and initializing arrays and strings, as well as using pointer notation to print values and addresses. Common string functions like strlen(), strcpy(), and strcmp() are also explained.
The document discusses various conditional control statements in C language including if, if-else, nested if, if-else-if, switch case statements. It provides the syntax and examples for each statement. Key conditional control statements covered are:
1) if statement - Executes code if a condition is true.
2) if-else statement - Executes one block of code if condition is true and another if false.
3) Nested if statements - if statements within other if statements allow multiple conditions to be checked.
4) if-else-if statement - Allows multiple alternative blocks to be executed depending on different conditions.
5) switch case statement - Allows efficient selection from multiple discrete choices
The document discusses various topics related to arrays, strings, and string handling functions in C programming language. It explains that arrays are collections of variables of the same type that can be accessed using indexes. One-dimensional and multi-dimensional arrays are declared along with examples. Common string functions like strlen(), strcpy(), strcat() etc. are described with examples to manipulate strings in C. Pointers and their usage with arrays and strings are also covered briefly.
Arrays allow us to store multiple values of the same data type in memory. We can declare an array by specifying the data type, name, and number of elements. Individual elements can then be accessed using the name and index. Multidimensional arrays store arrays of arrays, representing tables of data. Arrays can also be passed as parameters to functions to operate on the array values. Strings are arrays of characters that end with a null terminator and can be initialized using character literals or double quotes.
The document outlines arrays and provides examples of declaring, initializing, and using arrays in C++ programs. It discusses declaring arrays with a specified size and type, initializing arrays using for loops or initializer lists, passing arrays to functions, and searching and sorting array elements. Examples demonstrate initializing arrays, outputting array contents, computing operations on array elements, and using arrays to count outcomes from rolling dice simulations.
This document discusses functions in C programming. It defines what a function is and explains why we use functions. There are two types of functions - predefined and user-defined. User-defined functions have elements like function declaration, definition, and call. Functions can pass parameters by value or reference. The document also discusses recursion, library functions, and provides examples of calculating sine series using functions.
An array is a collection of data that holds a fixed number of values of the same type. Arrays allow storing multiple values in a single variable through indices. There are one-dimensional, two-dimensional, and multi-dimensional arrays. One-dimensional arrays use a single subscript, two-dimensional arrays use two subscripts like rows and columns, and multi-dimensional arrays can have more than two subscripts. Arrays can be initialized during declaration with values or initialized at runtime by user input or other methods. Elements are accessed using their indices and operations can be performed on the elements.
Good morning Salma Hayek you have to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you have to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you have to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you want me potter to plant in spring I will be there in the morning Salma Hayek you have a nice weekend with someone legally allowed in spring a contract for misunderstanding and tomorrow I hope it was about the best msg you want me potter you want me potter you want to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you have to do it up but what do you think about the pros of the morning Salma good mornings are you doing well and tomorrow I hope it goes well and I hope you to do it goes well and tomorrow I have to be there at both locations in spring a nice day service and I hope it goes away soon as I can you have to be to get a I hope it goes away soon I hope it goes away soon I hope it goes away soon as I can you have to be to work at a time I can do is
Introduction To Programming with PythonSushant Mane
The document provides an introduction to the Python programming language. It discusses Python's core features like being an interpreted, object-oriented, and dynamic language. It covers basic Python concepts like data types, variables, operators, control flow, functions, modules, file handling, and object-oriented programming. The document contains examples and explanations of built-in types like numbers, strings, lists, tuples, and dictionaries. It also discusses control structures, functions, modules, and classes in Python.
An array is a collection of similar data types stored under a common name. Arrays can be one-dimensional, two-dimensional, or multi-dimensional. Elements in an array are stored in contiguous memory locations. Arrays allow multiple variables of the same type to be manipulated together using a single name. Common operations on arrays include sorting elements, performing matrix operations, and CPU scheduling.
This document discusses arrays in the C programming language. It begins by defining an array as a collection of elements of the same data type. It then covers key topics such as declaring and initializing one-dimensional and multi-dimensional arrays, accessing array elements using indexes, and performing input and output operations on arrays. Examples are provided to demonstrate how to declare, initialize, read from, and print arrays. The document serves as an introduction to working with arrays in C.
This document provides an overview of C programming basics including character sets, tokens, keywords, variables, data types, and control statements in C language. Some key points include:
- The C character set includes lowercase/uppercase letters, digits, special characters, whitespace, and escape sequences.
- Tokens in C include operators, special symbols, string constants, identifiers, and keywords. There are 32 reserved keywords that should be in lowercase.
- Variables are named locations in memory that hold values. They are declared with a data type and initialized by assigning a value.
- C has primary data types like int, float, char, and double. Derived types include arrays, pointers, unions, structures,
The document discusses arrays in C programming. It defines an array as a collection of elements of the same type stored in contiguous memory locations that can be accessed using an index. One-dimensional arrays store elements in a single list, while two-dimensional arrays arrange elements in a table with rows and columns. The document provides examples of declaring, initializing, and accessing elements of one-dimensional and two-dimensional arrays.
This document discusses data types and variables in Python. It explains that a variable is a name that refers to a memory location used to store values. The main data types in Python are numbers, strings, lists, tuples, and dictionaries. It provides examples of declaring and initializing different types of variables, including integers, floats, characters, and strings. Methods for assigning values, displaying values, and accepting user input are also demonstrated. The document also discusses type conversion using functions like int(), float(), and eval() when accepting user input.
function, storage class and array and stringsRai University
The document discusses one-dimensional arrays in C programming. It defines arrays, explains how to declare and initialize them, and provides examples of accessing array elements. It also discusses reading and printing arrays, and summarizes common string handling functions in C like strcat(), strcmp(), and strcpy().
This document discusses how different C data types are stored in memory. It describes the basic integer and floating point types, including their storage sizes and value ranges. It also covers void, enumerated, pointer, array, structure, and union types. For integers, it provides the memory representations of char, both signed and unsigned. It explains the memory layout of a C program, including the text, data, stack, and heap segments. Finally, it briefly discusses big and little endian formats for multibyte data storage.
This document discusses different types of operators in Python including arithmetic, comparison, assignment, logical, membership, and identity operators. It provides examples of using arithmetic operators like addition, subtraction, multiplication, division, floor division, exponentiation, and modulus on variables. It also covers operator precedence and use of operators with strings.
The document discusses Python input and output functions. It describes how the input() function allows user input and converts the input to a string by default. The print() function outputs data to the screen and allows formatting of output. The document also discusses importing modules to reuse code and functions from other files.
1) The document discusses various Python flow control statements including if, if-else, nested if-else, and elif statements with examples of using these to check conditions and execute code blocks accordingly.
2) Examples include programs to check number comparisons, even/odd numbers, positive/negative numbers, and using nested if-else for multi-level checks like checking triangle validity.
3) The last few sections discuss using if-else statements to classify triangles as equilateral, isosceles, or scalene and to check if a number is positive, negative, or zero.
The document discusses arrays, strings, and pointers in C programming. It defines arrays as sequential collections of variables of the same data type that can be accessed using an index. Strings are stored in character arrays terminated by a null character. Pointers store the address of a variable in memory and can be used to access and modify that variable. Examples are provided of declaring and initializing arrays and strings, as well as using pointer notation to print values and addresses. Common string functions like strlen(), strcpy(), and strcmp() are also explained.
The document discusses various conditional control statements in C language including if, if-else, nested if, if-else-if, switch case statements. It provides the syntax and examples for each statement. Key conditional control statements covered are:
1) if statement - Executes code if a condition is true.
2) if-else statement - Executes one block of code if condition is true and another if false.
3) Nested if statements - if statements within other if statements allow multiple conditions to be checked.
4) if-else-if statement - Allows multiple alternative blocks to be executed depending on different conditions.
5) switch case statement - Allows efficient selection from multiple discrete choices
The document discusses various topics related to arrays, strings, and string handling functions in C programming language. It explains that arrays are collections of variables of the same type that can be accessed using indexes. One-dimensional and multi-dimensional arrays are declared along with examples. Common string functions like strlen(), strcpy(), strcat() etc. are described with examples to manipulate strings in C. Pointers and their usage with arrays and strings are also covered briefly.
Arrays allow us to store multiple values of the same data type in memory. We can declare an array by specifying the data type, name, and number of elements. Individual elements can then be accessed using the name and index. Multidimensional arrays store arrays of arrays, representing tables of data. Arrays can also be passed as parameters to functions to operate on the array values. Strings are arrays of characters that end with a null terminator and can be initialized using character literals or double quotes.
The document outlines arrays and provides examples of declaring, initializing, and using arrays in C++ programs. It discusses declaring arrays with a specified size and type, initializing arrays using for loops or initializer lists, passing arrays to functions, and searching and sorting array elements. Examples demonstrate initializing arrays, outputting array contents, computing operations on array elements, and using arrays to count outcomes from rolling dice simulations.
This document discusses functions in C programming. It defines what a function is and explains why we use functions. There are two types of functions - predefined and user-defined. User-defined functions have elements like function declaration, definition, and call. Functions can pass parameters by value or reference. The document also discusses recursion, library functions, and provides examples of calculating sine series using functions.
An array is a collection of data that holds a fixed number of values of the same type. Arrays allow storing multiple values in a single variable through indices. There are one-dimensional, two-dimensional, and multi-dimensional arrays. One-dimensional arrays use a single subscript, two-dimensional arrays use two subscripts like rows and columns, and multi-dimensional arrays can have more than two subscripts. Arrays can be initialized during declaration with values or initialized at runtime by user input or other methods. Elements are accessed using their indices and operations can be performed on the elements.
Good morning Salma Hayek you have to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you have to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you have to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you want me potter to plant in spring I will be there in the morning Salma Hayek you have a nice weekend with someone legally allowed in spring a contract for misunderstanding and tomorrow I hope it was about the best msg you want me potter you want me potter you want to do is your purpose of the best time to plant grass seed in the morning Salma Hayek you have to do it up but what do you think about the pros of the morning Salma good mornings are you doing well and tomorrow I hope it goes well and I hope you to do it goes well and tomorrow I have to be there at both locations in spring a nice day service and I hope it goes away soon as I can you have to be to get a I hope it goes away soon I hope it goes away soon I hope it goes away soon as I can you have to be to work at a time I can do is
Introduction To Programming with PythonSushant Mane
The document provides an introduction to the Python programming language. It discusses Python's core features like being an interpreted, object-oriented, and dynamic language. It covers basic Python concepts like data types, variables, operators, control flow, functions, modules, file handling, and object-oriented programming. The document contains examples and explanations of built-in types like numbers, strings, lists, tuples, and dictionaries. It also discusses control structures, functions, modules, and classes in Python.
This document provides an introduction to Python including:
- The major versions of Python and their differences
- Popular integrated development environments for Python
- How to set up Python environments using Anaconda and Eclipse
- An overview of Python basics like variables, numbers, strings, lists, dictionaries, modules and functions
- Examples of Python control flow structures like conditionals and loops
Python Workshop - Learn Python the Hard WayUtkarsh Sengar
This document provides an introduction to learning Python. It discusses prerequisites for Python, basic Python concepts like variables, data types, operators, conditionals and loops. It also covers functions, files, classes and exceptions handling in Python. The document demonstrates these concepts through examples and exercises learners to practice char frequency counting and Caesar cipher encoding/decoding in Python. It encourages learners to practice more to master the language and provides additional learning resources.
This document provides an introduction to programming with Python. It discusses several influential early programming languages like FORTRAN, COBOL, LISP, and BASIC. It also covers key Python concepts like expressions, variables, printing output, user input, repetition with for loops and while loops, conditional execution with if/else statements, string processing, and file I/O. The document is intended to teach basic Python syntax and structures to newcomers of the language.
Here is a Python function that calculates the distance between two points given their x and y coordinates:
```python
import math
def distance_between_points(x1, y1, x2, y2):
return math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
```
To use it:
```python
distance = distance_between_points(1, 2, 4, 5)
print(distance)
```
This would print 3.605551275463989, which is the distance between the points (1,2) and (4,5).
The key steps are:
1.
Introduction to Python Language and Data TypesRavi Shankar
This document provides information about the Python programming language. It discusses that Python was invented in the 1990s in the Netherlands by Guido van Rossum and was named after Monty Python. It is an open source, general-purpose, interpreted programming language that is widely used. The document then covers various Python implementations, popular Python editors and IDEs, tips for getting started with Python, basic syntax, data types, operators, and lists.
Python is an interpreted, general-purpose, high-level programming language. It allows programmers to define functions for reusing code and scoping variables within functions. Key concepts covered include objects, expressions, conditionals, loops, modules, files, and recursion. Functions can call other functions, allowing for modular and reusable code.
Introduction to Python Programming | InsideAIMLVijaySharma802
This document provides an introduction to the Python programming language. It discusses key features such as: Python being an easy to learn, read, and maintain language with a broad standard library; its use across many domains and companies; and how it can be used for tasks like web development, data science, and more. The document also covers Python concepts like variables, data types, conditional statements, loops, functions, strings and operators.
The document provides an introduction to programming with Python. It discusses key concepts like code, syntax, output, and consoles. It also covers compiling vs interpreting languages, with Python being an interpreted language. The document explains expressions, variables, basic math operations, and functions in Python like print and input. It introduces control structures like if/else statements, for loops, and while loops. It also covers different data types in Python including numbers, strings, lists, and dictionaries.
The document provides an introduction to programming with Python. It discusses key concepts like code, syntax, output, and consoles. It also covers compiling vs interpreting languages, with Python being an interpreted language. The document explains expressions, variables, basic math operations, and functions in Python like print and input. It introduces control structures like if/else statements and for/while loops. It also covers different data types in Python including numbers, strings, lists, and dictionaries.
Python is an interpreted programming language that can be used to perform calculations, handle text, and control program flow. It allows variables to store values that can later be used in expressions. Common operations include arithmetic, printing output, accepting user input, and repeating tasks using for loops and conditional statements like if/else. The interpreter executes Python code directly without a separate compilation step required by other languages.
This document provides an introduction to Python programming concepts including data types, operators, control flow statements, functions and modules. It discusses the basic Python data types like integers, floats, booleans, strings, lists, tuples, dictionaries and sets. It also covers Python operators like arithmetic, assignment, comparison, logical and identity operators. Additionally, it describes control flow statements like if/else and for loops. Finally, it touches on functions, modules and input/output statements in Python.
Python is a multi-paradigm programming language created in 1989 by Guido van Rossum. It is based on ABC and Modula-3 and was named after Monty Python. Python has a simple syntax and dynamic typing and memory management. It can be used for web development, data science, scientific computing, and more. The core philosophy is summarized in the Zen of Python document. Python code is written, tested, and executed using integrated development environments like PyCharm or directly from the command line.
ดนตรีของในหลวง รัชกาลที่ 1-10 ดนตรีพระราชนิพนธ์
ดนตรีพระราชนิพนธ์
พระราชกรณียกิจด้านการดนตรี
ดนตรีของในหลวงที่ปวงชนทูลเกล้าถวาย
King of Thailand's music
Mixed methods in social and behavioral sciencesBAINIDA
This document discusses the benefits of group counseling for people living with HIV/AIDS based on their experiences. It notes that group counseling provided a unique form of support different from friends and family. It allowed people to come to terms with their status and make important behavioral changes through the companionship and support of others in the group. Meeting with other HIV-positive people provided a level of understanding not found elsewhere. The document recommends counseling to help individuals cope with publicly admitting their status, while respecting their choice on timing. It also expresses a preference for focusing on positive living over "miracle cures" and not wanting to act as guinea pigs in drug trials. Overall, it advocates for people with HIV/AIDS to be seen as
party list calculation visualization @ BADS@ Exploratory Data Analysis and Data Visualization @Graduate School of Applied Statistics, National Development of Administration, taught by Arnond Sakworawich, Ph.D.
วิทยาการข้อมูลสำหรับการแพทย์ บรรยายที่โรงพยาบาลชลบุรี วันที่ 21 มีนาคม 2561 เวลา 13.00-15.00 น
Data Science
Big Data
Data Science in Medicine & Health Care
Health and Bioinformatics
Data Science and Health Care Planning
Data Science and Health Care Prevention and Protection
Data Science and Medical Diagnosis
Data Science and Medical Care & Treatment
Data Engineering for Health Care
Financial time series analysis with R@the 3rd NIDA BADS conference by Asst. p...BAINIDA
Introduction to financial time series analysis, getting financial time series data through yahoo finance API with R, time series visualization, risk and return calculation for financial time series data, autoregressive integrated moving average models with R code and applications in financial time series.
Data science and big data for business and industrial applicationBAINIDA
Data science and big data for business and industrial application บรรยายที่วิทยาลัยเทคโนโลยีจิตรลดา สนามเสือป่า ให้คณาจารย์ฟังครับ
5/23/2018
ผศ. ดร. อานนท์ ศักดิ์วรวิชญ์
Word segmentation using Deep Learning (Deep cut) บรรยายโดย Rakpong Kittinaradorn จาก True Corporation ในงาน the second business analytics and data science contest/conference
Visualizing for real impact โดยอาจารย์ ดร. อานนท์ ศักดิ์วรวิชญ์ ผู้อำนวยการศูนย์คลังปัญญาและสารสนเทศ สถาบันบัณฑิตพัฒนบริหารศาสตร์ สาขาวิชา Business Analytics and Intelligence และสาขาวิทยาการประกันภัยและการบริหารความเสี่ยง สถาบันบัณฑิตพัฒนบริหารศาสตร์ บรรยายในงาน The 4th Data Cube Conference (Data Analytic to Real Application) เมื่อวันที่ clock
Saturday, July 22 at 9 AM - 5 PM
https://www.facebook.com/events/193038667886326/
ขอบคุณ ดร เอกสิทธิ์ พัชรวงศ์ศักดาที่เชิญไปบรรยายครับ สไลด์ชุดนี้มีคนถามหากันมากเลย post ให้ทุกคนครับ
Second prize business plan @ the First NIDA business analytics and data scien...BAINIDA
Second prize business plan @ the First NIDA business analytics and data sciences contest
ผู้ที่ได้รางวัลรองชนะเลิศอันดับ 1
1.นางสาวทอฝัน แหล๊ะตี สาขาประกันภัย
2.นางสาวผัลย์สุภา ศิริวงศ์นภา สาขาไอที
3.นางสาวนรีรัตน์ ตรีชีวันนาถ สาขาสถิติ
จากจุฬาลงกรณ์มหาวิทยาลัย คณะพาณิชยศาสตร์และการบัญชี
Second prize data analysis @ the First NIDA business analytics and data scie...BAINIDA
Second prize data analysis
@ the First NIDA business analytics and data sciences contest
1.นางสาวทอฝัน แหล๊ะตี สาขาประกันภัย
2.นางสาวผัลย์สุภา ศิริวงศ์นภา สาขาไอที
3.นางสาวนรีรัตน์ ตรีชีวันนาถ สาขาสถิติ
จาก คณะพาณิชยศาสตร์และการบัญชี จุฬาลงกรณ์มหาวิทยาลัย
Different pricelists for different shops in odoo Point of Sale in Odoo 17Celine George
Price lists are a useful tool for managing the costs of your goods and services. This can assist you in working with other businesses effectively and maximizing your revenues. Additionally, you can provide your customers discounts by using price lists.
Analysis of Quantitative Data Parametric and non-parametric tests.pptxShrutidhara2
This presentation covers the following points--
Parametric Tests
• Testing the Significance of the Difference between Means
• Analysis of Variance (ANOVA) - One way and Two way
• Analysis of Co-variance (One-way)
Non-Parametric Tests:
• Chi-Square test
• Sign test
• Median test
• Sum of Rank test
• Mann-Whitney U-test
Moreover, it includes a comparison of parametric and non-parametric tests, a comparison of one-way ANOVA, two-way ANOVA, and one-way ANCOVA.
How to Create a Rainbow Man Effect in Odoo 18Celine George
In Odoo 18, the Rainbow Man animation adds a playful and motivating touch to task completion. This cheerful effect appears after specific user actions, like marking a CRM opportunity as won. It’s designed to enhance user experience by making routine tasks more engaging.
How to Manage Allocations in Odoo 18 Time OffCeline George
Allocations in Odoo 18 Time Off allow you to assign a specific amount of time off (leave) to an employee. These allocations can be used to track and manage leave entitlements for employees, such as vacation days, sick leave, etc.
*Order Hemiptera:*
Hemiptera, commonly known as true bugs, is a large and diverse order of insects that includes cicadas, aphids, leafhoppers, and shield bugs. Characterized by their piercing-sucking mouthparts, Hemiptera feed on plant sap, other insects, or small animals. Many species are significant pests, while others are beneficial predators.
*Order Neuroptera:*
Neuroptera, also known as net-winged insects, is an order of insects that includes lacewings, antlions, and owlflies. Characterized by their delicate, net-like wing venation and large, often prominent eyes, Neuroptera are predators that feed on other insects, playing an important role in biological control. Many species have aquatic larvae, adding to their ecological diversity.
Available for Weekend June 6th. Uploaded Wed Evening June 4th.
Topics are unlimited and done weekly. Make sure to catch mini updates as well. TY for being here. More upcoming this summer.
A 8th FREE WORKSHOP
Reiki - Yoga
“Intuition” (Part 1)
For Personal/Professional Inner Tuning in. Also useful for future Reiki Training prerequisites. The Attunement Process. It’s all about turning on your healing skills. See More inside.
Your Attendance is valued.
Any Reiki Masters are Welcomed
More About:
The ‘Attunement’ Process.
It’s all about turning on your healing skills. Skills do vary as well. Usually our skills are Universal. They can serve reiki and any relatable Branches of Wellness.
(Remote is popular.)
Now for Intuition. It’s silent by design. We can train our intuition to be bold or louder. Intuition is instinct and the Senses. Coded in our Workshops too.
Intuition can include Psychic Science, Metaphysics, & Spiritual Practices to aid anything. It takes confidence and faith, in oneself.
Thank you for attending our workshops.
If you are new, do welcome.
Grad Students: I am planning a Reiki-Yoga Master Course. I’m Fusing both together.
This will include the foundation of each practice. Both are challenging independently. The Free Workshops do matter. They can also be downloaded or Re-Read for review.
My Reiki-Yoga Level 1, will be updated Soon/for Summer. The cost will be affordable.
As a Guest Student,
You are now upgraded to Grad Level.
See, LDMMIA Uploads for “Student Checkin”
Again, Do Welcome or Welcome Back.
I would like to focus on the next level. More advanced topics for practical, daily, regular Reiki Practice. This can be both personal or Professional use.
Our Focus will be using our Intuition. It’s good to master our inner voice/wisdom/inner being. Our era is shifting dramatically. As our Astral/Matrix/Lower Realms are crashing; They are out of date vs 5D Life.
We will catch trickster
energies detouring us.
(See Presentation for all sections, THX AGAIN.)
Strengthened Senior High School - Landas Tool Kit.pptxSteffMusniQuiballo
Landas Tool Kit is a very helpful guide in guiding the Senior High School students on their SHS academic journey. It will pave the way on what curriculum exits will they choose and fit in.
Forestry Model Exit Exam_2025_Wollega University, Gimbi Campus.pdfChalaKelbessa
This is Forestry Exit Exam Model for 2025 from Department of Forestry at Wollega University, Gimbi Campus.
The exam contains forestry courses such as Dendrology, Forest Seed and Nursery Establishment, Plantation Establishment and Management, Silviculture, Forest Mensuration, Forest Biometry, Agroforestry, Biodiversity Conservation, Forest Business, Forest Fore, Forest Protection, Forest Management, Wood Processing and others that are related to Forestry.
How to Create a Stage or a Pipeline in Odoo 18 CRMCeline George
In Odoo, the CRM (Customer Relationship Management) module’s pipeline is a visual representation of a company's sales process that helps sales teams track and manage their interactions with potential customers.
Stewart Butler - OECD - How to design and deliver higher technical education ...EduSkills OECD
Stewart Butler, Labour Market Economist at the OECD presents at the webinar 'How to design and deliver higher technical education to develop in-demand skills' on 3 June 2025. You can check out the webinar recording via our website - https://oecdedutoday.com/webinars/ .
You can check out the Higher Technical Education in England report via this link 👉 - https://www.oecd.org/en/publications/higher-technical-education-in-england-united-kingdom_7c00dff7-en.html
You can check out the pathways to professions report here 👉 https://www.oecd.org/en/publications/pathways-to-professions_a81152f4-en.html
"Hymenoptera: A Diverse and Fascinating Order".pptxArshad Shaikh
Hymenoptera is a diverse order of insects that includes bees, wasps, ants, and sawflies. Characterized by their narrow waists and often social behavior, Hymenoptera play crucial roles in ecosystems as pollinators, predators, and decomposers, with many species exhibiting complex social structures and communication systems.
Pests of Rice: Damage, Identification, Life history, and Management.pptxArshad Shaikh
Rice pests can significantly impact crop yield and quality. Major pests include the brown plant hopper (Nilaparvata lugens), which transmits viruses like rice ragged stunt and grassy stunt; the yellow stem borer (Scirpophaga incertulas), whose larvae bore into stems causing deadhearts and whiteheads; and leaf folders (Cnaphalocrocis medinalis), which feed on leaves reducing photosynthetic area. Other pests include rice weevils (Sitophilus oryzae) and gall midges (Orseolia oryzae). Effective management strategies are crucial to minimize losses.
HOW YOU DOIN'?
Cool, cool, cool...
Because that's what she said after THE QUIZ CLUB OF PSGCAS' TV SHOW quiz.
Grab your popcorn and be seated.
QM: THARUN S A
BCom Accounting and Finance (2023-26)
THE QUIZ CLUB OF PSGCAS.
3. The Python Interpreter
Python is an interpreted language
Commands are executed through the Python interpreter
A programmer defines a series of commands in advance and saves those
commands in a text file known as source code or a script.
For Python, source code is conventionally stored in a file named with the .py
suffix (e.g., demo.py)
3
4. Writing a Simple Program
Algorithm for calculating the area of a square
Obtain the width from the user
Computer the area by applying the following formula
𝒂𝒓𝒆𝒂 = 𝒘𝒊𝒅𝒕𝒉 ∗ 𝒘𝒊𝒅𝒕𝒉
Display the result
4
5. Reading Input from the Console
Use the input function to obtain a string
variable = input(‘Enter width : ’)
Use the eval function to evaluate expression
variable = eval(string_variable)
Combination
width = eval(input(‘Enter width : ’))
5
7. Identifiers
Identifiers in Python are case-sensitive, so temperature and Temperature are
distinct names.
Identifiers can be composed of almost any combination of letters, numerals,
and underscore characters.
An identifier cannot begin with a numeral and that there are 33 specially
reserved words that cannot be used as identifiers:
7
8. Types
Python is a dynamically typed language, as there is no advance declaration
associating an identifier with a particular data type.
An identifier can be associated with any type of object, and it can later be
reassigned to another object of the same (or different) type.
Although an identifier has no declared type, the object to which it refers has
a definite type. In our first example, the characters 98.6 are recognized as a
floating-point literal, and thus the identifier temperature is associated with
an instance of the float class having that value.
8
10. Boolean Data Types
Often in a program you need to compare two values, such as whether i is
greater than j
There are six comparison operators (also known as relational operators) that
can be used to compare two values
The result of the comparison is a Boolean value: true or false
Operator Name
< less than
<= less than or equal to
> greater than
>= greater than or equal to
== equal to
!= not equal to
10
11. String
Sequence of characters that is treated as a single item
Written as a sequence of characters surrounded by either single quotes (') or
double quotes (")
Position or index of a character in a string
Identified with one of the numbers 0, 1, 2, 3, . . . .
11
12. List
12
list1 = list() # Create an empty list
list2 = list([2, 3, 4]) # Create a list with elements 2, 3, 4
list3 = list(["red", "green", "blue"]) # Create a list with strings
list4 = list(range(3, 6)) # Create a list with elements 3, 4, 5
list5 = list("abcd") # Create a list with characters a, b, c
list1 = [] # Same as list()
list2 = [2, 3, 4] # Same as list([2, 3, 4])
list3 = ["red", "green"] # Same as list(["red", "green"])
append(x: object): None
insert(index: int, x: object): None
remove(x: object): None
index(x: object): int
count(x: object): int
sort(): None
reverse(): None
extend(l: list): None
pop([i]): object
13. List Is a Sequence Type
13
Operation Description
x in s True if element x is in sequence s
x not in s True if element x is not in sequence s
s1 + s2 Concatenates two sequences s1 and s2
s * n, n * s n copies of sequence s concatenated
s[i] ith element in sequence s
s[i : j] Slice of sequence s from index i to j - 1
len(s) Length of sequence s, i.e., the number of elements in s
min(s) Smallest element in sequence s
max(s) Largest element in sequence s
sum(s) Sum of all numbers in sequence s
for loop Traverses elements from left to right in a for loop
<, <=, >, >=, ==, != Compares two sequences
15. if-else Statement
15
if width > 0:
area = width * width
else:
print(‘width must be positive’)
if Boolean-expression:
statement(s) for the true case
else:
statement(s) for the false case
16. Multiple Alternative for if Statements
16
if score >= 90.0:
grade = 'A'
elif score >= 80.0:
grade = 'B'
elif score >= 70.0:
grade = 'C'
elif score >= 60.0:
grade = 'D'
else:
grade = 'F'
if score >= 90.0:
grade = 'A'
else:
if score >= 80.0:
grade = 'B'
else:
if score >= 70.0:
grade = 'C'
else:
if score >= 60.0:
grade = 'D'
else:
grade = 'F'
17. Logical Operators
17
Operator Description
not Logical negation
and Logical conjunction
or Logical disjunction
(year % 4 == 0 and year % 100 != 0) or year % 400 == 0)
A year is a leap year if it is divisible by 4 but not by 100, or it is divisible by 400.
18. Conditional Operator
18
y = 1 if x > 0 else -1if x > 0:
y = 1
else:
y = -1
if num % 2 == 0:
print(str(num) + “is even”)
else:
print(str(num) + “is odd”);
print("number is even" if (number % 2 == 0)
else "number is odd")
20. Loops
20
for i in range(1, 6):
print (i)
num = 1
while num <= 5:
print(num)
num += 1
while conditions:
indented block of statements
for var in sequence:
indented block of statements
21. Functions
Functions can be used to define reusable code and organize and simplify code
21
def sum_range(a, b):
result = 0
for i in range(a, b+1):
result += i
return result
def main():
print('Sum from 1 to 10 is ', sum_range(1, 10));
print('Sum from 50 to 100 is ', sum_range(50, 100));
main()
def function_name(list of parameters):
# Function body
22. Reading Input from Text Files
22
continent = input('Enter the name of a continent : ')
continent = continent.title()
if continent != 'Antarctica':
infile = open('UN.txt', 'r')
for line in infile:
data = line.split(',')
if data[1] == continent:
print(data[0])
else:
print('There are not countries in Antarctica.')
infile = open(‘Filename’, ‘r’)
23. List Comprehension
23
list1 = [x for x in range(5)]
[0, 1, 2, 3, 4]
line = input('Enter series of numbers : ')
text_numbers = line.split(' ')
numbers = [eval(num) for num in text_numbers]
24. Objects and Classes
Object-oriented programming enables you to develop large-scale software
and GUIs effectively.
24
class Rectangle:
def __init__(self, width = 1, height = 2):
self._width = width
self._height = height
def area(self):
return self._width * self._height
def perimeter(self):
return 2 * (self._width * self._height)
def main():
r1 = Rectangle(10, 20)
print('The area of the rectangle is : ', r1.area())
print('The perimeter of the rectangle is : ', r1.perimeter())
main()
class ClassName:
initializer
methods