Skip to content

Instantly share code, notes, and snippets.

View sydney0zq's full-sized avatar
🎯
Focusing

Forest sydney0zq

🎯
Focusing
View GitHub Profile
@fuyufjh
fuyufjh / cheatsheet.py
Last active July 24, 2024 15:03
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)