WGU D335 Python Fundamentals – Full Study Guide 2026, Exams of Nursing

WGU D335 Python Fundamentals – Full Study Guide 2026

Typology: Exams

2025/2026

Available from 02/03/2026

StudyPlug
StudyPlug 🇺🇸

5

(3)

19K documents

1 / 4

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
WGU
D335 Python Fundamentals
Full
Study
Guide
2026
A program consists of? - ANSWER ✔ ✨ ---input, process, output
A named item used to hold a value? - ANSWER ✔✨ ---variable
Sequence of instructions that solves a problem. - ANSWER ✔ ✨ ---Algorithm
program that executes python programming. - ANSWER ✔ ✨ ---python intreperter or IDE
textual representation of a program - ANSWER ✔✨ ---code
row of text - ANSWER ✔ ✨ ---line
indicates the interpreter is ready to accept user input - ANSWER ✔✨---prompt
line of executable code - ANSWER ✔ ✨ ---statement
returns a value when evaluated - ANSWER ✔ ✨ ---expression
pf3
pf4

Partial preview of the text

Download WGU D335 Python Fundamentals – Full Study Guide 2026 and more Exams Nursing in PDF only on Docsity!

WGU D335 Python Fundamentals – Full Study Guide

A program consists of? - ANSWER ✔✨---input, process, output

A named item used to hold a value? - ANSWER ✔✨---variable

Sequence of instructions that solves a problem. - ANSWER ✔✨---Algorithm

program that executes python programming. - ANSWER ✔✨---python intreperter or IDE

textual representation of a program - ANSWER ✔✨---code

row of text - ANSWER ✔✨---line

indicates the interpreter is ready to accept user input - ANSWER ✔✨---prompt

line of executable code - ANSWER ✔✨---statement

returns a value when evaluated - ANSWER ✔✨---expression

displays output to the screen and starts a new line - ANSWER ✔✨---print( )

denotes a comment - ANSWER ✔✨---# or """

text enclosed in quotes - ANSWER ✔✨---string literal

keep multiple print statements on one line - ANSWER ✔✨---end=' '

used to get text from user - ANSWER ✔✨---input ( )

determines how a value can behave - ANSWER ✔✨---type( )

convert string to an integer - ANSWER ✔✨---int( )

syntaxes error - ANSWER ✔✨---a violation of the program language rules on how symbols can be

defined

runtime error - ANSWER ✔✨---the program attempts an impossible operation

indentation error - ANSWER ✔✨---lines inside the program are not properly indented

Value Error - ANSWER ✔✨---invalid value used

name error - ANSWER ✔✨---The program tries to use a variable that does not exist.

type error - ANSWER ✔✨---An operation uses incorrect types - can occur if adding an integer to a

string.

logic error (bug) - ANSWER ✔✨---program runs but does the wrong thing

value that get past into parameters - ANSWER ✔✨---argument

Variable created inside a function - ANSWER ✔✨---scope

___ says a block of code will follow - ANSWER ✔✨---:

returns the index of the first occurrence of x in the string - ANSWER ✔✨

  • --find(x)