Purpose of code editor in python IDE - ANS ✓provide a text editor offering
syntax highlighting, code completion, and indentation.
Python variables - ANS ✓serving as placeholders to store and manage data. In
Python, you don't need to explicitly declare a variable's data type; it dynamically
infers it based on the assigned value.
Symbolic Names - ANS ✓refer to names or identifiers that represent values,
objects, or entities.
variable name rules - ANS ✓number, letters, _
start with letter or _
cannot be a python keyword
assign multiple variables - ANS ✓x, y, z = "one", "two", "three"
assigning the same value multiple variables - ANS ✓hi = hello = hey = "greeting"
printing multiple variables with , and + - ANS ✓+ will combine strings, and also
numbers but not together
, will combine strings and numbers together.
WGU D522
, 2
WGU
inside a function - ANS ✓means the code is part of a specific function block.
Variables defined inside the function have local scope, and the function executes
when called.
outside a function - ANS ✓means the code is not part of any specific function
block. Variables defined outside functions generally have a global scope and can
be accessed throughout the program
function (local) - ANS ✓not accessible outside, promoting encapsulation.
Global Variables - ANS ✓declared outside of functions and can be accessed from
any part of the program
core data types - ANS ✓integers, floats, strings
Lists and Tuples - ANS ✓facilitate the organization of multiple elements
dictionaires - ANS ✓enable key value pair storage.
str: - ANS ✓string
int: - ANS ✓integer
float: - ANS ✓floating-point type
boolean - ANS ✓true or falseu
is_true=true
is_false=false
WGU D522
, 3
WGU
list - ANS ✓ordered, mutalble sequence
[]
tuple - ANS ✓ordered, immutable sequence
()
set: - ANS ✓unordered, mutable collection of unique elements
frozenset: - ANS ✓unchangeable set
dict: - ANS ✓dictionary, an unordered collection of key-pair values
int_num = int(float_num) - ANS ✓converting something to integer, int
same for x = float(y)
x = round(y)
x=abs(y) - absoluite value
You can create multiple strings with - ANS ✓three quotes
Repitition (*) - ANS ✓repeat a string
concatenation (+) - ANS ✓combine two strings
Indexing ([]) - ANS ✓accessing individual characters by position. First pos is 0.
WGU D522
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller DoctorKen. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $11.99. You're not tied to anything after your purchase.