#python3
Read more stories on Hashnode
Articles with this tag
how to install My computer uses Anaconda3, conda 4.10.1 pip install pyautogui Finding Coordinate It will display current mouse coordinate every...
condition statement in Python if Statement Keyword: if, elif, else if must there before use elif, else if [condition] : [space]code you want to...
Loop Statement in Python Keyword: for, while for need to set number range while need to set when stop the repeatation use for: when you know how many...
Definition One of the data structure in python. Create set of data declaration use { and } to declare setA={1,3,4,"test"} # {1, 'test', 3,...
Definition One of the data structure in python. has key and value binded. You can find value when you know the key very slimier with hashmap how to...
Definition One of the data structure in python. Almost same as List But Tuple is not editable. Object.index structure same as List indexing How to...