디필의 요모조모

[코드업] 파이썬 기초 100제 6006~6010 풀이 본문

Programming Language/Python

[코드업] 파이썬 기초 100제 6006~6010 풀이

Diphylleia12 2021. 12. 18. 22:52

6006.

print('"'+"!@#$%^&*()"+"'")

 

6007.

print('"C:\\Download\\'+"'hello'.py"+'"')

 

6008.

print("print("+'"'+"Hello\\nWorld"+'")')

 

6009.

a=input()
print(a)

 

6010.

a=input()
a=int(a)
print(a)
Comments