Skip to content

Instantly share code, notes, and snippets.

View ANDERSONTECHWERKS's full-sized avatar
💭
Learning.

ATW ANDERSONTECHWERKS

💭
Learning.
  • ATW
  • USA
View GitHub Profile
@fuyufjh
fuyufjh / cheatsheet.py
Last active February 19, 2024 00:36
My Python Cheatsheet
Python Cheatsheet
=================
################################ Input & Output ###############################
name = input('please enter your name: ')
print('hello,', name)
ageStr = input('please enter your age: ')
age = int(ageStr)