DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Variables — Example 14

Quick explanation + ready code for: Variables.

Python Variables Back to examples
Back to language
Syntax: Variables in Python. ID: #14

Code

name = "DrSchool"
count = 5
print(name, count)

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.